mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
16 lines
136 B
C
16 lines
136 B
C
/* { dg-do run } */
|
|
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
|
|
#pragma acc parallel async
|
|
;
|
|
|
|
/* no #pragma acc wait */
|
|
return 0;
|
|
}
|
|
|