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++
/
pr24455.C
blob
ad43b47b2c50860cd7bd08a0c253cd7d089768ef
1
// { dg-do run }
2
// { dg-additional-sources pr24455-1.C }
3
// { dg-require-effective-target tls_runtime }
4
5
extern "C" void abort (void);
6
7
extern int i;
8
#pragma omp threadprivate(i)
9
10
int main()
11
{
12
i = 0;
13
14
#pragma omp parallel default(none) num_threads(10) copyin(i)
15
{
16
i++;
17
#pragma omp barrier
18
if (i != 1)
19
abort ();
20
}
21
22
return 0;
23
}