blob: 9f6bc2ce1ed795f544279db762db289fdff9c95b [file] [log] [blame]
Chris Lattnerc4d360d2003-08-23 19:59:55 +00001; RUN: as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
2
3declare int %foo(int *%X)
4declare int %foo(float *%X)
5
6implementation
7
8void %test() {
9 call int %foo(int* null)
10 call int %foo(float* null)
11 ret void
12}