1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 15:32:52 +01:00
llvm-mirror/test/Regression/CodeGen/X86/2002-12-23-SubProblem.llx

8 lines
139 B
Plaintext
Raw Normal View History

; RUN: llvm-as < %s | llc -march=x86 -regalloc=simple
2002-12-24 00:51:30 +01:00
int %main(int %B) {
;%B = add int 0, 1
%R = sub int %B, 1 ; %r = 0
ret int %R
}