llvm-project/llvm/test/Regression/CodeGen/X86/2002-12-23-SubProblem.llx

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
}