summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Transforms/InstCombine/set.ll6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/set.ll b/test/Transforms/InstCombine/set.ll
index 9ade443c0c..970fceb4cf 100644
--- a/test/Transforms/InstCombine/set.ll
+++ b/test/Transforms/InstCombine/set.ll
@@ -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
+}