1 /* { dg-do compile } */ 2 /* { dg-require-effective-target ti_c67x } */ 3 /* { dg-options "-O2" } */ 4 /* { dg-final { scan-assembler "rcpdp" } } */ 5 /* { dg-final { scan-assembler "rcpsp" } } */ 6 f(double x,double y)7double f (double x, double y) 8 { 9 return x / y; 10 } 11 g(float x,float y)12float g (float x, float y) 13 { 14 return x / y; 15 } 16