new testcase
authorChris Lattner <sabre@nondot.org>
Fri, 6 May 2005 00:58:09 +0000 (00:58 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 6 May 2005 00:58:09 +0000 (00:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21708 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/or.ll

index 669540b5e0f61b195dea653cc70c949e0815164a..5ac274e33062ab755164a056951bbcbf333a25c6 100644 (file)
@@ -128,3 +128,8 @@ bool %test19(int %A) {
         ret bool %D
 }
 
+int %test20(int %x) {
+       %y = and int %x, 123
+       %z = or int %y, %x
+       ret int %z
+}