1 /* { dg-do compile } */
2 /* { dg-require-effective-target lp64 } */
3 /* { dg-require-effective-target dfp } */
4 /* { dg-additional-options "-fsanitize-coverage=trace-pc -fnon-call-exceptions --param=max-cse-insns=1 -frounding-math" } */
5 /* { dg-additional-options "-mstack-arg-probe" { target x86_64-*-* i?86-*-* } } */
6
7 void baz (int *);
8 void bar (double, double, _Decimal64);
9
10 void
11 foo (void)
12 {
13 int s __attribute__((cleanup (baz)));
14 bar (0xfffffffffffffffe, 0xebf3fff2fbebaf7f, 0xffffffffffffff);
15 }