mirror of git://gcc.gnu.org/git/gcc.git
18 lines
306 B
C
18 lines
306 B
C
/* { dg-do compile } */
|
|
/* { dg-options "-O2" } */
|
|
/* { dg-final { scan-assembler-times "fmsub\[ \ta-zA-Z0-9\]*," 2 } } */
|
|
|
|
#include <epiphany_intrinsics.h>
|
|
|
|
float
|
|
f1 (float a, float b, float c)
|
|
{
|
|
return __builtin_epiphany_fmsub (a, b, c);
|
|
}
|
|
|
|
float
|
|
f2 (float a, float b, float c)
|
|
{
|
|
return a - b * c;
|
|
}
|