aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/Reassociate
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-15 21:56:51 +0000
committerChris Lattner <sabre@nondot.org>2002-05-15 21:56:51 +0000
commitb064baf85173141ae1db95539b9a6e88829ba592 (patch)
treee817619b8a7d0ea2179b0ed13e5b5740f04f8f4b /test/Transforms/Reassociate
parent11d13fbfba030486d9e2a1338093b5f474dd10f8 (diff)
Testcase to ensure trees structures are correctly linearized
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2632 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/Reassociate')
-rw-r--r--test/Transforms/Reassociate/2002-05-15-MissedTree.ll11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Transforms/Reassociate/2002-05-15-MissedTree.ll b/test/Transforms/Reassociate/2002-05-15-MissedTree.ll
new file mode 100644
index 0000000000..1d08a1054e
--- /dev/null
+++ b/test/Transforms/Reassociate/2002-05-15-MissedTree.ll
@@ -0,0 +1,11 @@
+; RUN: if as < %s | opt -reassociate -instcombine -constprop -die | dis | grep 5
+; RUN: then exit 1
+; RUN: else exit 0
+; RUN: fi
+
+int "test"(int %A, int %B) {
+ %W = add int %B, -5
+ %Y = add int %A, 5
+ %Z = add int %W, %Y
+ ret int %Z
+}