Initialize uninitialized variables.

llvm-svn: 91477
This commit is contained in:
Bill Wendling 2009-12-16 00:01:27 +00:00
parent 776ef4dd32
commit 3766491eee
1 changed files with 1 additions and 1 deletions

View File

@ -1274,7 +1274,7 @@ ReoptimizeBlock:
// Okay, there is no really great place to put this block. If, however,
// the block before this one would be a fall-through if this block were
// removed, move this block to the end of the function.
MachineBasicBlock *PrevTBB, *PrevFBB;
MachineBasicBlock *PrevTBB = 0, *PrevFBB = 0;
SmallVector<MachineOperand, 4> PrevCond;
if (FallThrough != MF.end() &&
!TII->AnalyzeBranch(PrevBB, PrevTBB, PrevFBB, PrevCond, true) &&