Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / Transforms / InstCombine / 2004-12-08-RemInfiniteLoop.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine
2
3 int %test(int %X) {
4         %Y = rem int %X, undef
5         ret int %Y
6 }