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
* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pragma-re-3.c
blob
4a73c414b92ba21fcbe6d06aa7fe8e9ebad9ea7b
1
/* { dg-do link { target *-*-solaris* } } */
2
3
#pragma redefine_extname f1 f
4
#pragma redefine_extname g1 g
5
6
void
f
() {
7
extern
int
f1
();
8
f1
();
9
}
10
11
void
g
() {
12
g1
();
13
}
14
15
int
main
() {
16
f
();
17
g
();
18
}