mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-19 16:35:10 +00:00
Fix uninitialized variable warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147676 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
99eecd3676
commit
a32a08c8e2
@ -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