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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
weak
/
weak-12.c
blob
72cc1445e4b7e3910e7f79c97cfe672fa74a589d
1
/* Test for #pragma weak with declaration not at file scope. */
2
/* { dg-do compile } */
3
/* { dg-require-weak "" } */
4
/* { dg-options "" } */
5
6
/* { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?foo" } } */
7
8
#pragma weak foo
9
10
int
11
main
(
void
)
12
{
13
extern
int
foo
(
void
);
14
if
(&
foo
)
15
return
foo
();
16
return
0
;
17
}