Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / Transforms / LevelRaise / 2002-10-08-VarArgCallInfLoop.ll
1 ; Due to a recent change, this testcase now sends the raise pass into an infinite loop
2 ;
3 ; RUN: llvm-upgrade < %s | llvm-as | opt -raise
4
5 implementation
6
7 void %test(sbyte* %P, void(...) * %F) {
8         call void (...)* %F(sbyte* %P)
9         ret void
10 }