mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-19 04:07:46 +01:00
16 lines
208 B
C
16 lines
208 B
C
/* { dg-do run } */
|
|
/* { dg-additional-options "-fno-tree-ch -fno-tree-dce -fno-tree-vrp" } */
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
int fa;
|
|
|
|
#pragma acc kernels
|
|
for (int rw = 0; rw < 1; ++rw)
|
|
fa = 0;
|
|
|
|
return 0;
|
|
}
|
|
|