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
C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
gomp
/
pr88949.C
blob
04d2415971a658d6f4a7b3c40a6d26c8890bb447
1
// PR c++/88949
2
// { dg-do compile }
3
4
struct A {
5
int a;
6
A (int x) : a (x) {
7
#pragma omp parallel firstprivate (a)
8
--a;
9
}
10
void foo () {
11
#pragma omp parallel firstprivate (a)
12
--a;
13
}
14
};
15
16
int c;
17
18
int
19
main ()
20
{
21
A d(c);
22
d.foo ();
23
}