Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / CodeGen / PowerPC / neg.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | grep neg
2
3 int %test(int %X) {
4     %Y = sub int 0, %X
5         ret int %Y
6 }