aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/dfp-dd-2.c
blob: 668b21d4b4cf8dded79bb4ee1ad77b00691028c4 (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
/* Test generation of DFP instructions for POWER6.  */
/* { dg-do compile { target { powerpc*-*-linux* && powerpc_fprs } } } */
/* { dg-require-effective-target dfp } */
/* { dg-options "-std=gnu99 -O1 -mdejagnu-cpu=power6" } */

/* { dg-final { scan-assembler-times "fneg" 1 } } */
/* { dg-final { scan-assembler-times "fabs" 1 } } */
/* { dg-final { scan-assembler-times "fnabs" 1 } } */
/* { dg-final { scan-assembler-times "fmr" 0 } } */

_Decimal64
func1 (_Decimal64 a, _Decimal64 b)
{
  return -b;
}

_Decimal64
func2 (_Decimal64 a, _Decimal64 b)
{
  return __builtin_fabsd64 (b);
}

_Decimal64
func3 (_Decimal64 a, _Decimal64 b)
{
  return - __builtin_fabsd64 (b);
}