Switch tests over to use the 'not' script, instead of explicit control flow
[oota-llvm.git] / test / Transforms / LevelRaise / 2002-10-08-VarArgCall.ll
1 ; RUN: as < %s | opt -raise | dis | grep call | not grep '\.\.\.'
2
3 implementation
4
5 void %test(sbyte* %P) {
6         %Q = cast sbyte* %P to void (...)*
7         call void (...)* %Q(sbyte* %P)
8         ret void
9 }