Sign in
gnu
/
gcc
/
2c564e813c0626802e5bfb066c094933d5e6a774
/
.
/
libgomp
/
testsuite
/
libgomp.c++
/
pr69393.C
blob: 02605e0ef0e9bc15ac591b0ae1634bf3fc04f350 [
file
] [
log
] [
blame
]
// { dg-do run }
// { dg-require-effective-target lto }
// { dg-options "-flto -g" }
int
e
=
5
;
int
main
()
{
int
a
[
e
];
a
[
0
]
=
6
;
#pragma
omp parallel
if
(
a
[
0
]
!=
6
)
__builtin_abort
();
return
0
;
}