1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ffast-math -msse -mfpmath=sse -mrecip" } */
3 
t1(float a,float b)4 float t1(float a, float b)
5 {
6   return a / b;
7 }
8 
9 /* { dg-final { scan-assembler "rcpss" } } */
10