llvm-6502/test/CodeGen/X86/2002-12-23-SubProblem.llx
Alkis Evlogimenos eed462b685 Change llc command line for register allocators
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8815 91177308-0d34-0410-b5e6-96231b3b80d8
2003-10-02 06:13:19 +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
}