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
7 double f (double x, double y)
8 {
9 return x / y;
10 }
11
12 float g (float x, float y)
13 {
14 return x / y;
15 }