llvm-6502/test/CodeGen/X86/2002-12-23-SubProblem.llx
Chris Lattner ddd5b417c6 Rename -no-* to -disable-*
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5642 91177308-0d34-0410-b5e6-96231b3b80d8
2003-02-26 20:00:41 +00:00

8 lines
149 B
Plaintext

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