mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 19:25:00 +00:00
Fix PR14361: wrong simplification of A+B==B+A. You may think that the old logic
replaced by this patch is equivalent to the new logic, but you'd be wrong, and that's exactly where the bug was. There's a similar bug in instsimplify which manifests itself as instsimplify failing to simplify this, rather than doing it wrong, see next commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168181 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -2356,8 +2356,20 @@ Instruction *InstCombiner::visitICmpInst(ICmpInst &I) {
|
||||
// Try not to increase register pressure.
|
||||
BO0->hasOneUse() && BO1->hasOneUse()) {
|
||||
// Determine Y and Z in the form icmp (X+Y), (X+Z).
|
||||
Value *Y = (A == C || A == D) ? B : A;
|
||||
Value *Z = (C == A || C == B) ? D : C;
|
||||
Value *Y, *Z;
|
||||
if (A == C) {
|
||||
Y = B;
|
||||
Z = D;
|
||||
} else if (A == D) {
|
||||
Y = B;
|
||||
Z = C;
|
||||
} else if (B == C) {
|
||||
Y = A;
|
||||
Z = D;
|
||||
} else if (B == D) {
|
||||
Y = A;
|
||||
Z = C;
|
||||
}
|
||||
return new ICmpInst(Pred, Y, Z);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user