Silence a spurious warning

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12815 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-04-10 18:32:01 +00:00
parent a5f4103931
commit 85aa7097c2
2 changed files with 2 additions and 2 deletions

View File

@ -2670,7 +2670,7 @@ void ISel::emitCastOperation(MachineBasicBlock *BB,
// a larger signed value, then use FLD on the larger value.
//
const Type *PromoteType = 0;
unsigned PromoteOpcode;
unsigned PromoteOpcode = 0;
unsigned RealDestReg = DestReg;
switch (SrcTy->getPrimitiveID()) {
case Type::BoolTyID:

View File

@ -2670,7 +2670,7 @@ void ISel::emitCastOperation(MachineBasicBlock *BB,
// a larger signed value, then use FLD on the larger value.
//
const Type *PromoteType = 0;
unsigned PromoteOpcode;
unsigned PromoteOpcode = 0;
unsigned RealDestReg = DestReg;
switch (SrcTy->getPrimitiveID()) {
case Type::BoolTyID: