llvm-mirror/test/CodeGen/X86/compare-add.ll

8 lines
169 B
LLVM
Raw Normal View History

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