blob: b138865a2ac62349cdfa74cfa8c819080816e1f8 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target ti_c67x } */
/* { dg-options "-O2 -fno-reciprocal-math" } */
/* { dg-final { scan-assembler-not "rcpdp" } } */
/* { dg-final { scan-assembler-not "rcpsp" } } */
double f (double x, double y)
{
return x / y;
}
float g (float x, float y)
{
return x / y;
}