1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 23:42:52 +01:00
llvm-mirror/test/Regression/CodeGen/X86/2002-12-23-SubProblem.llx
2005-08-04 19:55:39 +00:00

8 lines
139 B
Plaintext

; RUN: llvm-as < %s | llc -march=x86 -regalloc=simple
int %main(int %B) {
;%B = add int 0, 1
%R = sub int %B, 1 ; %r = 0
ret int %R
}