summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr105231.c
blob: 00121fd8d1ea51ba644cc38a55c4ccc07ee5dfb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile } */
/* { dg-require-effective-target lp64 } */
/* { dg-require-effective-target dfp } */
/* { dg-additional-options "-fsanitize-coverage=trace-pc -fnon-call-exceptions --param=max-cse-insns=1 -frounding-math" } */
/* { dg-additional-options "-mstack-arg-probe" { target x86_64-*-* i?86-*-* } } */

void baz (int *);
void bar (double, double, _Decimal64);

void
foo (void)
{
  int s __attribute__((cleanup (baz)));
  bar (0xfffffffffffffffe, 0xebf3fff2fbebaf7f, 0xffffffffffffff);
}