New testcase
authorChris Lattner <sabre@nondot.org>
Tue, 21 May 2002 20:03:42 +0000 (20:03 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 21 May 2002 20:03:42 +0000 (20:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2695 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll [new file with mode: 0644]

diff --git a/test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll b/test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll
new file mode 100644 (file)
index 0000000..1f4ec5b
--- /dev/null
@@ -0,0 +1,13 @@
+; This testcase shows a bug where an common subexpression exists, but there
+; is no shared dominator block that the expression can be hoisted out to.
+;
+; RUN: as < %s | opt -gcse | dis
+
+int "test"(int %X, int %Y) {
+       %Z = add int %X, %Y
+       ret int %Z
+
+Unreachable:
+       %Q = add int %X, %Y
+       ret int %Q
+}