New testcase, distilled from povray I think.
authorChris Lattner <sabre@nondot.org>
Sat, 13 Mar 2004 23:53:04 +0000 (23:53 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 13 Mar 2004 23:53:04 +0000 (23:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12364 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/2004-03-13-InstCombineInfLoop.ll [new file with mode: 0644]

diff --git a/test/Transforms/InstCombine/2004-03-13-InstCombineInfLoop.ll b/test/Transforms/InstCombine/2004-03-13-InstCombineInfLoop.ll
new file mode 100644 (file)
index 0000000..9e77df9
--- /dev/null
@@ -0,0 +1,13 @@
+; This testcase caused the combiner to go into an infinite loop, moving the 
+; cast back and forth, changing the seteq to operate on int vs uint and back.
+
+; RUN: llvm-as < %s | opt -instcombine -disable-output
+
+bool %test(uint %A, int %B) {
+        %C = sub uint 0, %A
+        %Cc = cast uint %C to int
+        %D = sub int 0, %B
+        %E = seteq int %Cc, %D
+        ret bool %E
+}
+