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
2015-07-03 Christophe Lyon <christophe.lyon@linaro.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
global_vars_c_init_driver.c
blob
b58c2c966614a486ad1ea2e16aedf4fabccc22af
1
int
i
=
2
;
2
void
test_globals
(
void
);
3
4
extern
void
abort
(
void
);
5
6
int
main
(
int
argc
,
char
**
argv
)
7
{
8
/* verify that i has been initialized by f90 */
9
if
(
i
!=
2
)
10
abort
();
11
test_globals
();
12
return
0
;
13
}
/* end main() */