1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/CodeGen/X86/2002-12-23-SubProblem.llx
Chris Lattner de27290f6b Genericize tests
llvm-svn: 10091
2003-11-19 19:44:28 +00:00

8 lines
153 B
Plaintext

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