Make sure this doesn't break when we're improving the isels
[oota-llvm.git] / test / Transforms / IPConstantProp / deadarg.ll
1 ; RUN: llvm-as < %s | opt -ipconstprop -disable-output
2 implementation
3
4 internal void %foo(int %X) {
5         call void %foo(int %X)
6         ret void
7 }