mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 16:19:52 +00:00
Silence warning by initializing variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53278 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -615,7 +615,7 @@ LowerCCCArguments(SDOperand Op, SelectionDAG &DAG)
|
|||||||
// Arguments stored on registers
|
// Arguments stored on registers
|
||||||
if (VA.isRegLoc()) {
|
if (VA.isRegLoc()) {
|
||||||
MVT RegVT = VA.getLocVT();
|
MVT RegVT = VA.getLocVT();
|
||||||
TargetRegisterClass *RC;
|
TargetRegisterClass *RC = 0;
|
||||||
|
|
||||||
if (RegVT == MVT::i32)
|
if (RegVT == MVT::i32)
|
||||||
RC = Mips::CPURegsRegisterClass;
|
RC = Mips::CPURegsRegisterClass;
|
||||||
|
|||||||
Reference in New Issue
Block a user