summaryrefslogtreecommitdiff
path: root/release_23/test/Transforms/InstCombine/cast-and-cast.ll
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/test/Transforms/InstCombine/cast-and-cast.ll')
-rw-r--r--release_23/test/Transforms/InstCombine/cast-and-cast.ll17
1 files changed, 0 insertions, 17 deletions
diff --git a/release_23/test/Transforms/InstCombine/cast-and-cast.ll b/release_23/test/Transforms/InstCombine/cast-and-cast.ll
deleted file mode 100644
index f90cb7499aff..000000000000
--- a/release_23/test/Transforms/InstCombine/cast-and-cast.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
-; RUN: not grep bitcast
-
-define i1 @test1(i32 %val) {
- %t1 = bitcast i32 %val to i32 ; <i32> [#uses=1]
- %t2 = and i32 %t1, 1 ; <i32> [#uses=1]
- %t3 = trunc i32 %t2 to i1 ; <i1> [#uses=1]
- ret i1 %t3
-}
-
-define i16 @test1.upgrd.1(i32 %val) {
- %t1 = bitcast i32 %val to i32 ; <i32> [#uses=1]
- %t2 = and i32 %t1, 1 ; <i32> [#uses=1]
- %t3 = trunc i32 %t2 to i16 ; <i16> [#uses=1]
- ret i16 %t3
-}
-