mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-13 10:32:06 +00:00
Initialize uninitialized variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91477 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
408e9d166a
commit
fe586b3e38
@ -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) &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user