Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
alias-5.c
blob: 56848c9a416436dc50daece5f23fd88d9b3e976f [
file
] [
log
] [
blame
]
/* { dg-do link } */
/* { dg-require-alias "" } */
/* { dg-options "" } */
static
inline
int
foo
()
{
return
0
;
}
static
int
bar
()
__attribute__
((
alias
(
"foo"
)));
int
main
()
{
return
bar
();
}