Silence warning by initializing variable.

llvm-svn: 53278
This commit is contained in:
Bill Wendling 2008-07-09 05:55:53 +00:00
parent bcc2139ba6
commit a2279686cf
1 changed files with 1 additions and 1 deletions

View File

@ -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;