aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/cast-and-cast.ll
blob: 04943206ad8b693d18e9cc4dd8934c448dd0b6ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: opt %s -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
}