repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
special
/
alias-2.c
blob
4cc8ce150f11fa32d93b61470ebf7696c113d14a
1
/* PR 3997 */
2
/* { dg-do run } */
3
/* { dg-require-alias "" } */
4
5
extern
void
abort
(
void
);
6
extern
void
exit
(
int
);
7
8
void
foo
(
void
)
9
{
10
exit
(
0
);
11
}
12
13
static void
bar
(
void
)
__attribute__
((
alias
(
"foo"
)));
14
15
int
main
()
16
{
17
bar
();
18
abort
();
19
}