repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2017-09-26 Thomas Koenig <tkoenig@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
alias-5.c
blob
56848c9a416436dc50daece5f23fd88d9b3e976f
1
/* { dg-do link } */
2
/* { dg-require-alias "" } */
3
/* { dg-options "" } */
4
5
static
inline
int
foo
() {
return
0
; }
6
static int
bar
()
__attribute__
((
alias
(
"foo"
)));
7
int
main
() {
return
bar
(); }