Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
145e176d2f5ed884cc1a6a14e54c16e24d5694f1
/
.
/
llvm
/
test
/
Regression
/
Transforms
/
FunctionResolve
/
2003-05-21-MissingArguments.ll
blob: cfbc76c0d123c1d45d55181627995f6f244455c8 [
file
] [
log
] [
blame
]
Chris Lattner
6f36424
2003-05-21 20:44:16 +0000
[
diff
] [
blame
]
1
; RUN: as < %s | opt -funcresolve -disable-output
2
3
void
%foo
(
int
,
int
)
{
4
ret
void
5
}
6
declare
void
%foo
(
...
)
7
8
void
%test
()
{
9
call
void
(
...
)*
%foo
(
int
7
)
10
ret
void
11
}