Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f94e215e4a67e5439d56a67bbe470c7860d4b9a6
/
.
/
test
/
CodeGen
/
2008-07-29-override-alias-decl.c
blob: 115cc33b04e10b13b8b3c98599f28418dd0cb1d4 [
file
] [
log
] [
blame
]
// RUN: clang -emit-llvm -o - %s | grep -e "^@f" | count 1
int
x
()
{}
int
f
()
__attribute__
((
weak
,
alias
(
"x"
)));
/* Test that we link to the alias correctly instead of making a new
forward definition. */
int
f
();
int
h
()
{
return
f
();
}