1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/Transforms/FunctionResolve/2003-08-23-ArgumentWarning.ll
Chris Lattner 1e75299960 This was fixed
llvm-svn: 18116
2004-11-22 19:19:11 +00:00

13 lines
235 B
LLVM

; 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
}