summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/select.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/InstCombine/select.ll')
-rw-r--r--test/Transforms/InstCombine/select.ll6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/select.ll b/test/Transforms/InstCombine/select.ll
index 0be572577c..843af1dbcd 100644
--- a/test/Transforms/InstCombine/select.ll
+++ b/test/Transforms/InstCombine/select.ll
@@ -142,3 +142,9 @@ int %test16(bool %C, int* %P) {
%V = load int* %P2
ret int %V
}
+
+bool %test17(int* %X, bool %C) {
+ %R = select bool %C, int* %X, int* null
+ %RV = seteq int* %R, null
+ ret bool %RV
+}