fix PR9215, preventing -reassociate from clearing nsw/nuw when
authorChris Lattner <sabre@nondot.org>
Thu, 17 Feb 2011 01:29:24 +0000 (01:29 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 17 Feb 2011 01:29:24 +0000 (01:29 +0000)
it swaps the LHS/RHS of a single binop.

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

lib/Transforms/Scalar/Reassociate.cpp
test/Transforms/Reassociate/optional-flags.ll

index 5df6f3725a3e3c4b0c22aff81029f6fb5b90e2d7..e093b52571afbaa02f2e8190df318db61e611752 100644 (file)
@@ -348,9 +348,10 @@ void Reassociate::RewriteExprTree(BinaryOperator *I,
       I->setOperand(0, Ops[i].Op);
       I->setOperand(1, Ops[i+1].Op);
 
-      // Conservatively clear all the optional flags, which may not hold
-      // after the reassociation.
-      I->clearSubclassOptionalData();
+      // Clear all the optional flags, which may not hold after the
+      // reassociation if the expression involved more than just this operation.
+      if (Ops.size() != 2)
+        I->clearSubclassOptionalData();
 
       DEBUG(dbgs() << "TO: " << *I << '\n');
       MadeChange = true;
index 5ecc7675f8e3cc0e04396a1aa8a451793acb5771..40f7d5bf5b800f0ad361536c894d168b6d833cbd 100644 (file)
@@ -20,3 +20,10 @@ define i64 @test1(i64 %a, i64 %b, i64 %c) {
   %z = add nsw i64 %y, %a
   ret i64 %z
 }
+
+; PR9215
+; CHECK: %s = add nsw i32 %y, %x
+define i32 @test2(i32 %x, i32 %y) {
+  %s = add nsw i32 %x, %y
+  ret i32 %s
+}