1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Fix uninitialized variable warning.

llvm-svn: 147676
This commit is contained in:
Chad Rosier 2012-01-06 20:02:49 +00:00
parent 990edbc5f1
commit a498c068f6

View File

@ -184,7 +184,7 @@ SelectAddr(SDValue Addr, SDValue &Base, SDValue &Offset) {
std::pair<SDNode*, SDNode*>
MipsDAGToDAGISel::SelectMULT(SDNode *N, unsigned Opc, DebugLoc dl, EVT Ty,
bool HasLo, bool HasHi) {
SDNode *Lo, *Hi;
SDNode *Lo = 0, *Hi = 0;
SDNode *Mul = CurDAG->getMachineNode(Opc, dl, MVT::Glue, N->getOperand(0),
N->getOperand(1));
SDValue InFlag = SDValue(Mul, 0);