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
/
pr58702.C
blob
5bab86118baa94bf8347777d4aea2e9ce85b23d1
1
// PR c++/58702
2
// { dg-do compile }
3
// { dg-options "-fopenmp" }
4
5
void foo()
6
{
7
x; // { dg-error "was not declared" }
8
#pragma omp parallel for reduction(+:x)
9
for (int i = 0; i < 10; ++i) ;
10
}