Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
ba4733d901b1c2b994f66707657342b8c81c92bc
/
.
/
test
/
Transforms
/
FunctionResolve
/
2003-08-23-ArgumentWarning.ll
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
}