Sign in
gnu
/
gcc
/
926d9947847a0683cf34de6fc231209747576088
/
.
/
libgomp
/
testsuite
/
libgomp.c
/
shared-3.c
blob: 494a970ad8f71ced6209b31d6eeb232285fc7261 [
file
] [
log
] [
blame
]
/* { dg-do run } */
void
abort
(
void
);
int
main
()
{
int
x
;
int
*
p
;
p
=
&
x
;
#pragma
omp parallel
{
if
(
p
!=
&
x
)
abort
();
}
return
0
;
}