projects
/
platform
/
upstream
/
gcc48.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Imported Upstream version 4.8.1
[platform/upstream/gcc48.git]
/
gcc
/
testsuite
/
gcc.dg
/
gomp
/
pr25874.c
1
/* { dg-options "-O -fopenmp" } */
2
3
void foo();
4
5
inline void bar()
6
{
7
int i;
8
for ( i=0; i<1; ++i )
9
#pragma omp parallel
10
foo();
11
}
12
13
void baz()
14
{
15
#pragma omp parallel
16
bar();
17
}