llvm-6502/test/CodeGen/X86/compare-add.ll
2006-12-02 04:23:10 +00:00

9 lines
224 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 &&
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | not grep add
bool %X(int %X) {
%Y = add int %X, 14
%Z = setne int %Y, 12345
ret bool %Z
}