c++: Add [dcl.init.aggr] examples to testsuite
[official-gcc.git] / gcc / testsuite / gcc.target / epiphany / fmsub-1.c
blobff7fefa7f200cd10aa24370a438e15d54c06da1a
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 /* { dg-final { scan-assembler-times "fmsub\[ \ta-zA-Z0-9\]*," 2 } } */
5 #include <epiphany_intrinsics.h>
7 float
8 f1 (float a, float b, float c)
10 return __builtin_epiphany_fmsub (a, b, c);
13 float
14 f2 (float a, float b, float c)
16 return a - b * c;