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
/
parallel-3.C
blob
633d7ba5998301c4e84a6eabfbfad8de40f7bf8d
1
// { dg-do compile }
2
3
extern int printf (const char *, ...);
4
5
int main (void)
6
{
7
double d = 6;
8
int i = 1;
9
#pragma omp parallel shared(d) private(i) num_threads (4 + i)
10
{
11
i = 4;
12
printf ("%s %d %g\n", "Hello, World!", i, d);
13
}
14
return 0;
15
}