add a new testcase which occurs in 181.mcf
authorChris Lattner <sabre@nondot.org>
Sun, 24 Apr 2005 06:55:33 +0000 (06:55 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 24 Apr 2005 06:55:33 +0000 (06:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21489 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/set.ll

index 9ade443c0cbb9dbb15dc2a49a81b90dc44df6d72..970fceb4cfa76b70237071b8b93ef4e68550b44f 100644 (file)
@@ -100,3 +100,9 @@ endif:
         ret bool %tmp.4
 }
 
+bool %test19(bool %A, bool %B) {
+       %a = cast bool %A to int
+       %b = cast bool %B to int
+       %C = seteq int %a, %b
+       ret bool %C
+}