mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-11 02:30:42 +00:00
13 lines
175 B
C
13 lines
175 B
C
/* { dg-skip-if "" { *-*-* } } */
|
|
|
|
#pragma omp declare target
|
|
extern int var;
|
|
#pragma omp end declare target
|
|
|
|
void __attribute__((noinline, noclone))
|
|
foo (void)
|
|
{
|
|
var++;
|
|
}
|
|
|