mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-02 00:51:56 +00:00
b6a27ed83f
llvm-svn: 48762
8 lines
167 B
Plaintext
8 lines
167 B
Plaintext
; RUN: llvm-as < %s | llc -march=x86 -regalloc=simple
|
|
|
|
define i32 @main(i32 %B) {
|
|
;%B = add i32 0, 1;
|
|
%R = sub i32 %B, 1 ; %r = 0
|
|
ret i32 %R
|
|
}
|