blob: 5295d95f40fd154fef5e11cbad0b5bd5220806f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Verify that the fmac insn is used for the standard fmaf function. */
/* { dg-do compile { target "sh*-*-*" } } */
/* { dg-options "-O1" } */
/* { dg-skip-if "" { "sh*-*-*" } { "-m1" "-m2" "-m3" "-m4al" "*nofpu" "-m4-340*" "-m4-400*" "-m4-500*" "-m5*" } { "" } } */
/* { dg-final { scan-assembler "fmac" } } */
#include <math.h>
float
test_func_00 (float a, float b, float c)
{
return fmaf (a, b, c);
}
|