blob: 08c0539dc638e5b507a79c512df1ec520e5d3a03 [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 "declare target"
functions that throw. */
#pragma omp declare target
__attribute__ ((__noinline__)) int addit (int a, int b)
{
if (a < 0) throw -1;
return 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-not "Generated .* clone" "simdclone" { target x86_64-*-* } } } */