mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
Remove an unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71740 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9c4856a4cf
commit
e19fb7de63
@ -553,7 +553,6 @@ void IfConverter::ScanInstructions(BBInfo &BBI) {
|
||||
// Then scan all the instructions.
|
||||
BBI.NonPredSize = 0;
|
||||
BBI.ClobbersPred = false;
|
||||
bool SeenCondBr = false;
|
||||
for (MachineBasicBlock::iterator I = BBI.BB->begin(), E = BBI.BB->end();
|
||||
I != E; ++I) {
|
||||
const TargetInstrDesc &TID = I->getDesc();
|
||||
@ -579,8 +578,6 @@ void IfConverter::ScanInstructions(BBInfo &BBI) {
|
||||
// Predicate modification instruction should end the block (except for
|
||||
// already predicated instructions and end of block branches).
|
||||
if (isCondBr) {
|
||||
SeenCondBr = true;
|
||||
|
||||
// A conditional branch is not predicable, but it may be eliminated.
|
||||
continue;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user