Skip to content
GitLab
Explore
Sign in
This is an archived project. Repository and other project resources are read-only.
llvm-epi-0.8
clang
test
CodeGen
functions.c
Find file
Normal view
History
Permalink
functions.c
104 B
Newer
Older
implement codegen for functions whose function body type don't match
Chris Lattner
committed
Dec 02, 2007
1
2
3
4
5
6
7
8
9
10
11
// RUN: clang %s -emit-llvm
int
g
();
int
foo
(
int
i
)
{
return
g
(
i
);
}
int
g
(
int
i
)
{
return
g
(
i
);
}