mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00:00
Alkis noticed that this variable is dead. Thanks!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18369 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
38f1455393
commit
6f9e571529
@ -562,7 +562,6 @@ static bool HoistThenElseCodeToIf(BranchInst *BI) {
|
||||
|
||||
// If we get here, we can hoist at least one instruction.
|
||||
BasicBlock *BIParent = BI->getParent();
|
||||
bool Hoisted = false;
|
||||
|
||||
do {
|
||||
// If we are hoisting the terminator instruction, don't move one (making a
|
||||
@ -580,7 +579,6 @@ static bool HoistThenElseCodeToIf(BranchInst *BI) {
|
||||
|
||||
I1 = BB1->begin();
|
||||
I2 = BB2->begin();
|
||||
Hoisted = true;
|
||||
} while (I1->getOpcode() == I2->getOpcode() && I1->isIdenticalTo(I2));
|
||||
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user