mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
ec9a35a6f9
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47793 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|
|
|