mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 02:33:53 +00:00
Delete a no-op loop.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14965 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c3c92d834a
commit
5f0eb64079
@ -3103,15 +3103,6 @@ bool InstCombiner::runOnFunction(Function &F) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check to see if any of the operands of this instruction are a
|
|
||||||
// GlobalValue. Since they sneak in all over the place and inhibit
|
|
||||||
// optimization, we want to strip them out unconditionally!
|
|
||||||
for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
|
|
||||||
if (isa<GlobalValue>(I->getOperand(i))) {
|
|
||||||
I->setOperand(i, I->getOperand(i));
|
|
||||||
Changed = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Now that we have an instruction, try combining it to simplify it...
|
// Now that we have an instruction, try combining it to simplify it...
|
||||||
if (Instruction *Result = visit(*I)) {
|
if (Instruction *Result = visit(*I)) {
|
||||||
++NumCombined;
|
++NumCombined;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user