llvm-6502/test/CodeGen/X86/2002-12-23-SubProblem.ll
2009-09-08 23:54:48 +00:00

8 lines
157 B
LLVM

; RUN: llc < %s -march=x86 -regalloc=simple
define i32 @main(i32 %B) {
;%B = add i32 0, 1;
%R = sub i32 %B, 1 ; %r = 0
ret i32 %R
}