forked from OSchip/llvm-project
Silence warning by initializing variable.
llvm-svn: 53278
This commit is contained in:
parent
bcc2139ba6
commit
a2279686cf
|
@ -615,7 +615,7 @@ LowerCCCArguments(SDOperand Op, SelectionDAG &DAG)
|
|||
// Arguments stored on registers
|
||||
if (VA.isRegLoc()) {
|
||||
MVT RegVT = VA.getLocVT();
|
||||
TargetRegisterClass *RC;
|
||||
TargetRegisterClass *RC = 0;
|
||||
|
||||
if (RegVT == MVT::i32)
|
||||
RC = Mips::CPURegsRegisterClass;
|
||||
|
|
Loading…
Reference in New Issue