aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/microblaze/isa/fsqrt.c
blob: 4c2466e4a555d84d6f343a15bbeebaa0bbc4528a (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-options "-O3 -mcpu=v6.00.a -mhard-float -mxl-float-sqrt" } */
#include <math.h>

float sqrt_func (float f) 
{
  /* { dg-final { scan-assembler "fsqrt\tr(\[0-9]\|\[1-2]\[0-9]\|3\[0-1]),r(\[0-9]\|\[1-2]\[0-9]\|3\[0-1])\[^0-9]" } } */
    return sqrtf (f);
}