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
2013-06-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
libgomp
/
testsuite
/
libgomp.c
/
single-2.c
blob
b510ce735e25df96d23507b8d185e055dc13f6df
1
#include <stdlib.h>
2
3
int
4
main
(
void
)
5
{
6
int
i
;
7
i
=
4
;
8
#pragma omp single copyprivate (i)
9
{
10
i
=
6
;
11
}
12
if
(
i
!=
6
)
13
abort
();
14
return
0
;
15
}