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
Fix wrong assertion for LIPO
[official-gcc.git]
/
gcc-4_7-mobile
/
libgomp
/
testsuite
/
libgomp.c++
/
nested-1.C
blob
8d0e397bd2e628526575b6bd322b4b0a5fc7b1b7
1
// { dg-do run }
2
3
extern "C" void abort(void);
4
#define N 1000
5
6
int foo()
7
{
8
int i = 0, j;
9
10
#pragma omp parallel for num_threads(2) shared (i)
11
for (j = 0; j < N; ++j)
12
{
13
#pragma omp parallel num_threads(1) shared (i)
14
{
15
#pragma omp atomic
16
i++;
17
}
18
}
19
20
return i;
21
}
22
23
int main()
24
{
25
if (foo() != N)
26
abort ();
27
return 0;
28
}