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
Adjust 'libgomp.c/max_vf-*.c'
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
scope-1.c
blob
80cc6246cb512cea57d716788e25cbed4e7ce36a
1
void
abort
(
void
);
2
void
exit
(
int
);
3
4
int
v
=
3
;
5
6
void
7
f
(
void
)
8
{
9
int
v
=
4
;
10
{
11
extern
int
v
;
12
if
(
v
!=
3
)
13
abort
();
14
}
15
}
16
17
int
18
main
(
void
)
19
{
20
f
();
21
exit
(
0
);
22
}