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
2012-12-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
libgomp
/
testsuite
/
libgomp.c++
/
single-1.C
blob
e318a48ca5ccc10d6d5fb316c05fd03a0780b690
1
extern "C" void abort (void);
2
3
main()
4
{
5
int i = 0;
6
7
#pragma omp parallel shared (i)
8
{
9
#pragma omp single
10
{
11
i++;
12
}
13
}
14
15
if (i != 1)
16
abort ();
17
18
return 0;
19
}