2018-02-09 Sebastian Perta <sebastian.perta@renesas.com>
[official-gcc.git] / gcc / testsuite / gcc.target / sh / pr53511-1.c
blobbd6ac00fdd67e8e65a1bf6b2c0ce66e033b2b508
1 /* Verify that the fmac insn is used for the standard fmaf function. */
2 /* { dg-do compile { target { any_fpu } } } */
3 /* { dg-options "-O1" } */
4 /* { dg-final { scan-assembler "fmac" } } */
6 #include <math.h>
8 float
9 test_func_00 (float a, float b, float c)
11 return fmaf (a, b, c);