Force the interpreter for this testcase
[oota-llvm.git] / test / Transforms / LevelRaise / 2002-10-08-VarArgCall.ll
1 ; RUN: if as < %s | opt -raise | dis | grep call | grep \.\.\.
2 ; RUN: then exit 1
3 ; RUN: else exit 0
4 ; RUN: fi
5
6 implementation
7
8 void %test(sbyte* %P) {
9         %Q = cast sbyte* %P to void (...)*
10         call void (...)* %Q(sbyte* %P)
11         ret void
12 }