blob: 4c34967af95f083902f060612a2b4c07a34344d5 [file] [log] [blame]
/* { dg-options "-fopenmp -O2" } */
/* { dg-additional-options "-fopenmp-target-simd-clone=any -fdump-ipa-simdclone-details" } */
/* Test that simd clones are not generated for functions with
"declare target" but that call possibly side-effecting functions
in the body. */
extern int f (int);
#pragma omp declare target
__attribute__ ((__noinline__)) int addit(int a, int b)
{
return f(a) + b;
}
#pragma omp end declare target
void callit (int *a, int *b, int *c)
{
int i;
#pragma omp for simd
for (i = 0; i < 16; i++)
c[i] = addit (a[i], b[i]);
}
/* { dg-final { scan-ipa-dump "body contains unsafe function call" "simdclone" { target x86_64-*-* } } } */
/* { dg-final { scan-ipa-dump-not "Generated .* clone" "simdclone" { target x86_64-*-* } } } */