aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr96370.c
blob: b939b2141d617b590090c263074046df53b5a135 (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile { target dfp } } */
/* { dg-options "-O2 -ffast-math" } */

void c(_Decimal128);
void a(_Decimal128 b)
{
  c(-b * b);
}