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
Daily bump.
[official-gcc.git]
/
libgomp
/
testsuite
/
libgomp.c
/
nestedfn-2.c
blob
fdbbe0f735c99e0b61c61dc0ce7e048419cca121
1
/* { dg-do run } */
2
3
extern
void
abort
(
void
);
4
5
int
6
main
(
void
)
7
{
8
int
i
;
9
void
10
foo
(
void
)
11
{
12
#pragma omp master
13
i
+=
8
;
14
}
15
i
=
4
;
16
foo
();
17
if
(
i
!=
12
)
18
abort
();
19
return
0
;
20
}