mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
fea1dd0804
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
289 B
LLVM
13 lines
289 B
LLVM
; RUN: llvm-as %s -o %t.bc
|
|
; RUN: lli %t.bc > /dev/null
|
|
|
|
; We were accidentally inverting the signedness of right shifts. Whoops.
|
|
|
|
define i32 @main() {
|
|
%X = ashr i32 -1, 16 ; <i32> [#uses=1]
|
|
%Y = ashr i32 %X, 16 ; <i32> [#uses=1]
|
|
%Z = add i32 %Y, 1 ; <i32> [#uses=1]
|
|
ret i32 %Z
|
|
}
|
|
|