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:
parent
990edbc5f1
commit
a498c068f6
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user