blob: b9ebe6322afef77793ced028cd91ca979389ff9c [file] [log] [blame]
Chris Lattnerb58d0d52002-10-09 00:09:59 +00001; Due to a recent change, this testcase now sends the raise pass into an infinite loop
2;
Misha Brukmane78760e2003-09-16 15:29:54 +00003; RUN: llvm-as < %s | opt -raise
Chris Lattnerb58d0d52002-10-09 00:09:59 +00004
5implementation
6
7void %test(sbyte* %P, void(...) * %F) {
8 call void (...)* %F(sbyte* %P)
9 ret void
10}