mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
c072619922
llvm-svn: 47793
13 lines
410 B
LLVM
13 lines
410 B
LLVM
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep and.*32
|
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
|
|
; RUN: not grep or.*153
|
|
; PR1014
|
|
|
|
define i32 @test(i32 %tmp1) {
|
|
%ovm = and i32 %tmp1, 32 ; <i32> [#uses=1]
|
|
%ov3 = add i32 %ovm, 145 ; <i32> [#uses=1]
|
|
%ov110 = xor i32 %ov3, 153 ; <i32> [#uses=1]
|
|
ret i32 %ov110
|
|
}
|
|
|