mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
18 lines
158 B
C
18 lines
158 B
C
/* { dg-do run } */
|
|
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
|
|
#pragma acc parallel
|
|
{
|
|
if (argc != 1)
|
|
abort ();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|