Testcases missed by the instruction combiner
authorChris Lattner <sabre@nondot.org>
Tue, 20 Jul 2004 00:57:21 +0000 (00:57 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 20 Jul 2004 00:57:21 +0000 (00:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15017 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/cast.ll

index a460661506de3f08411bd15ad31138dc2dd7f910..696d5c64baa1c0bed7b4ce232735f2d018524e37 100644 (file)
@@ -103,3 +103,17 @@ bool %test16(int* %P) {
        %c = cast int* %P to bool  ;; setne P, null
        ret bool %c
 }
+
+
+short %test17(bool %tmp3) {
+       %c = cast bool %tmp3 to int
+       %t86 = cast int %c to short
+       ret short %t86
+}
+
+short %test18(sbyte %tmp3) {
+       %c = cast sbyte %tmp3 to int
+       %t86 = cast int %c to short
+       ret short %t86
+}
+