1 /* Verify that the fsrra insn is not used when specifying -mno-fsrra and
2 -funsafe-math-optimizations and -ffinite-math-only. */
3 /* { dg-do compile { target { has_fsrra } } } */
4 /* { dg-options "-O1 -mno-fsrra -funsafe-math-optimizations -ffinite-math-only" } */
5 /* { dg-final { scan-assembler-not "fsrra" } } */
6
7 #include <math.h>
8
9 float
10 test_func_00 (float x)
11 {
12 return 1 / sqrtf (x);
13 }