mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
19 lines
213 B
C
19 lines
213 B
C
/* { dg-do run } */
|
|
/* { dg-additional-options "-flto" { target lto } } */
|
|
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
|
|
#pragma acc parallel
|
|
{
|
|
if (argc != 1)
|
|
abort ();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|