aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-11-27 05:06:58 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-11-27 05:06:58 +0000
commitdf2a4ff7d4fa2be6c02bd5d3d388bcabe55f06e7 (patch)
treeaf49277fe8bbd75f1f8b5519f7d63b87b3870fb3
parentbc4cf8d5b137d43a1d6fde8238184e47efe162be (diff)
Add a test to ensure a bitcast/and/trunc combination eliminates the bitcast.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31934 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/InstCombine/cast-and-cast.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/cast-and-cast.ll b/test/Transforms/InstCombine/cast-and-cast.ll
new file mode 100644
index 0000000000..9610f0bea0
--- /dev/null
+++ b/test/Transforms/InstCombine/cast-and-cast.ll
@@ -0,0 +1,14 @@
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep bitcast
+bool %test1(uint %val) {
+ %t1 = bitcast uint %val to int
+ %t2 = and int %t1, 1
+ %t3 = trunc int %t2 to bool
+ ret bool %t3
+}
+
+short %test1(uint %val) {
+ %t1 = bitcast uint %val to int
+ %t2 = and int %t1, 1
+ %t3 = trunc int %t2 to short
+ ret short %t3
+}