mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-28 06:27:16 +00:00
de27290f6b
llvm-svn: 10091
13 lines
266 B
Plaintext
13 lines
266 B
Plaintext
; RUN: llvm-as < %s | lli -force-interpreter=false -regalloc=simple
|
|
;-print-machineinstrs
|
|
|
|
int %main() {
|
|
%A = add int 0, 0 ; %A = 0
|
|
%B = add int 0, 1 ; %B = 1
|
|
br label %bb1
|
|
bb1:
|
|
%X = mul int %A, %B ; %X = 0*1 = 0
|
|
%R = sub int %B, 1 ; %r = 0
|
|
ret int %R
|
|
}
|