view gcc/testsuite/gcc.dg/pr51867.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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" } } */