summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2002-12-23-SubProblem.ll
blob: 68200ff2349e78b630611750b4400c0a54b02d19 (plain)
1
2
3
4
5
6
7
; RUN: llvm-as < %s | llc -march=x86 -regalloc=simple

define i32 @main(i32 %B) {
        ;%B = add i32 0, 1;
        %R = sub i32 %B, 1 ; %r = 0
        ret i32 %R
}