1/* { dg-do compile } */
2/* { dg-require-effective-target dfp } */
3/* { dg-options "-O -std=gnu99" } */
4
5_Decimal128 d128;
6long double tf;
7
8void foo (void)
9{
10  d128 = tf;
11}
12