mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
c48255bfcf
llvm-svn: 35343
10 lines
276 B
LLVM
10 lines
276 B
LLVM
; PR1271
|
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep and
|
|
define i1 @test(i32 %tmp13) {
|
|
entry:
|
|
%tmp14 = shl i32 %tmp13, 12 ; <i32> [#uses=1]
|
|
%tmp15 = lshr i32 %tmp14, 12 ; <i32> [#uses=1]
|
|
%res = icmp ne i32 %tmp15, 0 ; <i1>:3 [#uses=1]
|
|
ret i1 %res
|
|
}
|