Commit 124487 broke 254.gap. See if disabling the part that might be triggered
authorDuncan Sands <baldrick@free.fr>
Sun, 30 Jan 2011 18:24:20 +0000 (18:24 +0000)
committerDuncan Sands <baldrick@free.fr>
Sun, 30 Jan 2011 18:24:20 +0000 (18:24 +0000)
by PR9088 fixes things.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124561 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/InstructionSimplify.cpp
test/Transforms/InstSimplify/2010-12-20-Reassociate.ll

index fcbc6d50eeb957c906ee3a0abd932b8e8df0dd25..a907150b9a27a5e61eef79ec8c12e87e209e4982 100644 (file)
@@ -804,11 +804,11 @@ static Value *SimplifyDiv(unsigned Opcode, Value *Op0, Value *Op1,
   Value *X = 0, *Y = 0;
   if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) {
     if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1
-    BinaryOperator *Mul = cast<BinaryOperator>(Op0);
-    // If the Mul knows it does not overflow, then we are good to go.
-    if ((isSigned && Mul->hasNoSignedWrap()) ||
-        (!isSigned && Mul->hasNoUnsignedWrap()))
-      return X;
+//    BinaryOperator *Mul = cast<BinaryOperator>(Op0);
+//    // If the Mul knows it does not overflow, then we are good to go.
+//    if ((isSigned && Mul->hasNoSignedWrap()) ||
+//        (!isSigned && Mul->hasNoUnsignedWrap()))
+//      return X;
     // If X has the form X = A / Y then X * Y cannot overflow.
     if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
       if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
index 928442ac56c91c21277136c0bd11d576613e6b0f..c0ae257dcdc385bff75544c39f8a0646dcc6a015 100644 (file)
@@ -92,12 +92,10 @@ define i32 @sub3(i32 %x, i32 %y) {
 }
 
 define i32 @sdiv1(i32 %x, i32 %y) {
-; CHECK: @sdiv1
 ; (no overflow X * Y) / Y -> X
   %mul = mul nsw i32 %x, %y
   %r = sdiv i32 %mul, %y
   ret i32 %r
-; CHECK: ret i32 %x
 }
 
 define i32 @sdiv2(i32 %x, i32 %y) {
@@ -138,12 +136,10 @@ define i32 @sdiv5(i32 %x, i32 %y) {
 }
 
 define i32 @udiv1(i32 %x, i32 %y) {
-; CHECK: @udiv1
 ; (no overflow X * Y) / Y -> X
   %mul = mul nuw i32 %x, %y
   %r = udiv i32 %mul, %y
   ret i32 %r
-; CHECK: ret i32 %x
 }
 
 define i32 @udiv2(i32 %x, i32 %y) {