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
* recog.c (peephole2_optimize): Make it static.
[official-gcc.git]
/
libgomp
/
testsuite
/
libgomp.c
/
shared-3.c
blob
494a970ad8f71ced6209b31d6eeb232285fc7261
1
/* { dg-do run } */
2
3
void
abort
(
void
);
4
5
int
main
()
6
{
7
int
x
;
8
int
*
p
;
9
10
p
= &
x
;
11
12
#pragma omp parallel
13
{
14
if
(
p
!= &
x
)
15
abort
();
16
}
17
18
return
0
;
19
}