1 /* { dg-do compile { target dfp } } */
2 /* { dg-options "-Ofast" } */
3
4 int i;
5
6 int
7 foo(char c, _Decimal32 d)
8 {
9 d *= i;
10 d *= -(_Decimal64)c;
11 return d;
12 }