summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-01 03:34:53 +0000
committerChris Lattner <sabre@nondot.org>2003-06-01 03:34:53 +0000
commit4d6404f7629a35ab448a961de516741a8cf68767 (patch)
treef187ccedbac9aa10a9369ebe2ba47fc2c4ed8c40 /test
parent55afc33882d85db54e7ce4801a38dbb0cab54317 (diff)
downloadllvm-4d6404f7629a35ab448a961de516741a8cf68767.tar.gz
llvm-4d6404f7629a35ab448a961de516741a8cf68767.tar.bz2
llvm-4d6404f7629a35ab448a961de516741a8cf68767.tar.xz
New testcases
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6505 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/InstCombine/set.ll11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/set.ll b/test/Transforms/InstCombine/set.ll
index 38a490d48e..1e31e0df2e 100644
--- a/test/Transforms/InstCombine/set.ll
+++ b/test/Transforms/InstCombine/set.ll
@@ -78,3 +78,14 @@ bool %test14(bool %A, bool %B) {
ret bool %C
}
+; These instructions can be turned into cast-to-bool
+bool %test15(sbyte %A, short %A, int %A, long %A) {
+ %B1 = setne sbyte %A, 0
+ %B2 = setne short %A, 0
+ %B3 = setne int %A, 0
+ %B4 = setne long %A, 0
+ %C1 = or bool %B1, %B2
+ %C2 = or bool %B3, %B4
+ %D = or bool %C1, %C2
+ ret bool %D
+}