aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr51867.c
blob: 3e669cf7b46140d0fb84a487f5a0689a8585ad44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-O0 -fno-math-errno -fdump-rtl-expand" } */

extern float sqrtf(float);

float a(float x)
{
    return sqrtf(x);
}
float b(float x)
{
    return sqrtf(x);
}
/* Here the calls to sqrtf should be expanded into CALL_INSNs, rather than
   fpu sqrtf rtl patterns.  */
/* { dg-final { scan-rtl-dump-times "call_insn" 2 "expand" } } */
/* { dg-final { cleanup-rtl-dump "expand" } } */