mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-29 12:50:35 +00:00
20 lines
234 B
C
20 lines
234 B
C
/* { dg-do run } */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
fprintf (stderr, "CheCKpOInT\n");
|
|
#pragma acc kernels
|
|
{
|
|
abort ();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-output "CheCKpOInT" } */
|
|
/* { dg-shouldfail "" } */
|