1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/CodeGen/X86/2002-12-23-SubProblem.llx
2007-01-17 07:59:14 +00:00

8 lines
154 B
Plaintext

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