mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Don't call lookupNumber more than we have to.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53470 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
92e0834ac7
commit
c45996bf74
@ -1267,11 +1267,14 @@ bool GVN::performPRE(Function& F) {
|
||||
Value* op = BI->getOperand(i);
|
||||
if (isa<Argument>(op) || isa<Constant>(op) || isa<GlobalValue>(op))
|
||||
PREInstr->setOperand(i, op);
|
||||
else if (!lookupNumber(PREPred, VN.lookup(op))) {
|
||||
success = false;
|
||||
break;
|
||||
} else
|
||||
PREInstr->setOperand(i, lookupNumber(PREPred, VN.lookup(op)));
|
||||
else {
|
||||
Value* V = lookupNumber(PREPred, VN.lookup(op));
|
||||
if (!V) {
|
||||
success = false;
|
||||
break;
|
||||
} else
|
||||
PREInstr->setOperand(i, V);
|
||||
}
|
||||
}
|
||||
|
||||
// Fail out if we encounter an operand that is not available in
|
||||
|
Loading…
x
Reference in New Issue
Block a user