Adding XFAIL lines for dejagnu support.
[oota-llvm.git] / test / Transforms / FunctionResolve / 2003-08-23-ArgumentWarning.ll
1 ; XFAIL: *
2 ; RUN: llvm-as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
3
4 declare int %foo(int *%X)
5 declare int %foo(float *%X)
6
7 implementation
8
9 void %test() {
10   call int %foo(int* null)
11   call int %foo(float* null)
12   ret void
13 }