new testcase
[oota-llvm.git] / test / CodeGen / X86 / compare-add.ll
1 ; RUN: llvm-as < %s | llc -march=x86 &&
2 ; RUN: llvm-as < %s | llc -march=x86 | not grep add
3 bool %X(int %X) {
4         %Y = add int %X, 14
5         %Z = setne int %Y, 12345
6         ret bool %Z
7 }
8