]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.target/csky/fnmul-4.c
Remove svn:executable property from a couple of text files
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / csky / fnmul-4.c
1 /* { dg-do compile } */
2 /* { dg-options "-mcpu=ck810f -mhard-float -O2 -frounding-math" } */
3
4 double
5 fnmuld (double a, double b)
6 {
7 /* { dg-final { scan-assembler "fnmuld" } } */
8 return -(a * b);
9 }
10
11 float
12 fnmuls (float a, float b)
13 {
14 /* { dg-final { scan-assembler "fnmuls" } } */
15 return -(a * b);
16 }
17