mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 21:20:37 +00:00
bah, must generate all results
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24574 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
49c709f891
commit
cde0f5cfe7
@ -1191,8 +1191,14 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
|
|||||||
break;
|
break;
|
||||||
case ISD::READCYCLECOUNTER:
|
case ISD::READCYCLECOUNTER:
|
||||||
Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
|
Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
|
||||||
if (Tmp1 != Node->getOperand(0))
|
if (Tmp1 != Node->getOperand(0)) {
|
||||||
Result = DAG.getNode(ISD::READCYCLECOUNTER, MVT::i64, Tmp1);
|
std::vector<MVT::ValueType> rtypes;
|
||||||
|
std::vector<SDOperand> rvals;
|
||||||
|
rtypes.push_back(MVT::i64);
|
||||||
|
rtypes.push_back(MVT::Other);
|
||||||
|
rvals.push_back(Tmp1);
|
||||||
|
Result = DAG.getNode(ISD::READCYCLECOUNTER, rtypes, rvals);
|
||||||
|
}
|
||||||
|
|
||||||
// Since rdcc produce two values, make sure to remember that we legalized
|
// Since rdcc produce two values, make sure to remember that we legalized
|
||||||
// both of them.
|
// both of them.
|
||||||
|
Loading…
Reference in New Issue
Block a user