mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-19 18:24:05 +00:00
Fix VS 2010 build.
Patch by Nathan Jeffords! llvm-svn: 114661
This commit is contained in:
parent
6af7c7163f
commit
b58181793d
@ -2247,7 +2247,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
if (Val & 128)
|
||||
Val = GetVBR(Val, MatcherTable, MatcherIndex);
|
||||
RecordedNodes.push_back(std::pair<SDValue, SDNode*>(
|
||||
CurDAG->getTargetConstant(Val, VT), 0));
|
||||
CurDAG->getTargetConstant(Val, VT), (SDNode*)0));
|
||||
continue;
|
||||
}
|
||||
case OPC_EmitRegister: {
|
||||
@ -2255,7 +2255,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
(MVT::SimpleValueType)MatcherTable[MatcherIndex++];
|
||||
unsigned RegNo = MatcherTable[MatcherIndex++];
|
||||
RecordedNodes.push_back(std::pair<SDValue, SDNode*>(
|
||||
CurDAG->getRegister(RegNo, VT), 0));
|
||||
CurDAG->getRegister(RegNo, VT), (SDNode*)0));
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -2370,7 +2370,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
unsigned RecNo = MatcherTable[MatcherIndex++];
|
||||
assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
|
||||
SDValue Res = RunSDNodeXForm(RecordedNodes[RecNo].first, XFormNo);
|
||||
RecordedNodes.push_back(std::pair<SDValue,SDNode*>(Res, 0));
|
||||
RecordedNodes.push_back(std::pair<SDValue,SDNode*>(Res, (SDNode*) 0));
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -2451,7 +2451,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
|
||||
for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
|
||||
if (VTs[i] == MVT::Other || VTs[i] == MVT::Flag) break;
|
||||
RecordedNodes.push_back(std::pair<SDValue,SDNode*>(SDValue(Res, i),
|
||||
0));
|
||||
(SDNode*) 0));
|
||||
}
|
||||
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user