mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
5edf210bdf
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51357 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
292 B
LLVM
13 lines
292 B
LLVM
; RUN: llvm-as %s -f -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
|
|
}
|
|
|