blob: 8d89c7d4a4f63b78ec006e2ea971fc7cd24f97a3 [file] [log] [blame]
; RUN: llvm-as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
declare int %foo(int *%X)
declare int %foo(float *%X)
implementation
void %test() {
call int %foo(int* null)
call int %foo(float* null)
ret void
}