Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
8203725f37fbb45ded343e4378247fee3389c0da
/
.
/
test
/
CodeGen
/
2008-07-29-override-alias-decl.c
blob: 43f4e3ecedae08d63049d9942678fcf99ba1a7cd [
file
] [
log
] [
blame
]
// RUN: clang-cc -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
();
}