1/* { dg-do compile } */
2/* { dg-require-effective-target dfp } */
3/* { dg-options "-std=gnu99 -Os -fno-omit-frame-pointer" } */
4
5void
6__attribute__((noinline))
7bar (_Decimal128, _Decimal128, _Decimal128, _Decimal128, _Decimal128,
8     _Decimal128, _Decimal128, _Decimal128, _Decimal128);
9
10void
11foo (void)
12{
13  bar (0, 0, 0, 0, 0, 0, 0, 0, 0);
14}
15