Another testcase
[oota-llvm.git] / test / Transforms / InstCombine / add.ll
index af985f2b3ba68573fbbc41aa9d8cc0e9ffdd1960..e7548fb81b53eee1b2134d56128eae0547c6b18f 100644 (file)
@@ -116,3 +116,11 @@ ubyte %test18(ubyte %A) {
         %C = add ubyte %B, 17      ; == sub ubyte 16, %A
         ret ubyte %C
 }
+
+int %test19(bool %C) {
+        %A = select bool %C, int 1000, int 10
+        %V = add int %A, 123
+        ret int %V
+}
+
+