Skip to content
GitLab
Explore
Sign in
This is an archived project. Repository and other project resources are read-only.
"llvm/git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "01df817a33756c5480a1a0f623d5476e64428e6f"
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
);
}