llvm-6502/test/CodeGen/Alpha/i32_sub_1.ll
2006-12-02 04:23:10 +00:00

11 lines
260 B
LLVM

; Make sure this testcase codegens to the ctpop instruction
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep -i 'subl $16,1,$0'
implementation ; Functions:
int %foo(int %x) {
entry:
%tmp.1 = add int %x, -1 ; <int> [#uses=1]
ret int %tmp.1
}