2003-09-16 17:29:54 +02:00
|
|
|
; RUN: llvm-as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
|
2003-08-23 21:59:55 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|