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
c++: prvalue of array type [PR111286]
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
gomp
/
pr107001.c
blob
9c19d9b874584afaf460f9d4cb36f2b465d17be0
1
/* PR c/107001 */
2
/* { dg-do compile } */
3
/* { dg-options "-O0 -fopenmp -fexceptions" } */
4
/* { dg-require-effective-target exceptions } */
5
6
void
bar
(
void
);
7
void
foo
(
void
)
8
{
9
#pragma omp taskgroup
10
{
11
#pragma omp taskgroup
12
bar
();
13
}
14
}