1 /* Origin: trampoline-1.c Waldek Hebisch <hebisch@math.uni.wroc.pl> */
2 /* Ported to test -Wtrampolines Magnus Granberg <zorry@gentoo.org> */
4 /* { dg-do compile } */
5 /* { dg-require-effective-target trampolines } */
6 /* { dg-options "-O2 -Wtrampolines" } */
8 /* macOS 11 and above use heap-based trampolines, which do not emit a warning. */
9 /* { dg-skip-if "" { *-*-darwin2* } } */
11 /* This used to fail on various versions of Solaris 2 because the
12 trampoline couldn't be made executable. */
14 extern void abort(void);
15 extern double fabs(double);
19 const int correct
[1100] = {1, 0, -2, 0, 1, 0, 1, -1, -10, -30, -67};
22 double x1 (void) {return 1; }
23 double x2 (void) {return -1;}
24 double x3 (void) {return -1;}
25 double x4 (void) {return 1; }
26 double x5 (void) {return 0; }
28 typedef double pfun(void);
30 double a (int k
, pfun x1
, pfun x2
, pfun x3
, pfun x4
, pfun x5
)
32 double b (void) /* { dg-warning "trampoline generated for nested function 'b'" "standard descriptors" { xfail { { ia64-*-* *-*-aix* } || { powerpc*-*-* && lp64 } } } } */
35 return a (k
, b
, x1
, x2
, x3
, x4
);
46 if (fabs(a( i
, x1
, x2
, x3
, x4
, x5
) - correct
[i
]) > 0.1)