summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/or.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/InstCombine/or.ll')
-rw-r--r--test/Transforms/InstCombine/or.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/or.ll b/test/Transforms/InstCombine/or.ll
index c4a62283f3..43ed83d618 100644
--- a/test/Transforms/InstCombine/or.ll
+++ b/test/Transforms/InstCombine/or.ll
@@ -93,3 +93,10 @@ bool %test14(uint %A, uint %B) {
ret bool %D
}
+bool %test15(uint %A, uint %B) {
+ %C1 = setlt uint %A, %B
+ %C2 = seteq uint %A, %B
+ %D = or bool %C1, %C2 ; (A < B) | (A == B) === A <= B
+ ret bool %D
+}
+