aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/sh/pr53512-3.c
blob: 71522c8d96498aaaa7eb3ec69fc8f8f9e8370b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Verify that the fsrra insn is used when specifying -mfsrra and
  -funsafe-math-optimizations and -ffinite-math-only.  */
/* { dg-do compile }  */
/* { dg-options "-O1 -mfsrra -funsafe-math-optimizations -ffinite-math-only" } */
/* { dg-skip-if "" { "sh*-*-*" } { "-m1" "-m2*" "-m3*" "-m4al" "*nofpu" "-m4-340*" "-m4-400*" "-m4-500*" "-m5*" } { "" } }  */
/* { dg-final { scan-assembler "fsrra" } } */

#include <math.h>

float
test_func_00 (float x)
{
  return 1 / sqrtf (x);
}