aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/sparc/fnegop.c
blob: cbdf28f4c6017adc5d3708c98b7e5c06b9ac8a40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* { dg-do compile } */
/* { dg-options "-O2 -mvis3" } */

float test_fnadds(float x, float y)
{
  return -(x + y);
}

double test_fnaddd(double x, double y)
{
  return -(x + y);
}

float test_fnmuls(float x, float y)
{
  return -(x * y);
}

double test_fnmuld(double x, double y)
{
  return -(x * y);
}

double test_fnsmuld(float x, float y)
{
  return -((double)x * (double)y);
}

/* { dg-final { scan-assembler "fnadds\t%" } } */
/* { dg-final { scan-assembler "fnaddd\t%" } } */
/* { dg-final { scan-assembler "fnmuls\t%" } } */
/* { dg-final { scan-assembler "fnmuld\t%" } } */
/* { dg-final { scan-assembler "fnsmuld\t%" } } */