Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / CodeGen / X86 / compare-add.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 &&
2 ; RUN: llvm-upgrade < %s | llvm-as | 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