* config/i386/avx512fintrin.h (_mm512_set_epi16, _mm512_set_epi8,
[official-gcc.git] / gcc / testsuite / gcc.target / sh / sh4a-fsrra.c
blobebbb05a0846a046c7342d081afaa19dc5add7c03
1 /* Verify that we generate single-precision square root reciprocal
2 approximate (fsrra) in fast math mode on SH4A with FPU. */
3 /* { dg-do compile { target { has_fsrra } } } */
4 /* { dg-options "-O -ffast-math" } */
5 /* { dg-final { scan-assembler "fsrra" } } */
7 #include <math.h>
9 float
10 test (float f)
12 return 1 / sqrtf (f);