rt_gccstream/gcc/testsuite/gcc.dg/pr38338.c

19 lines
306 B
C

/* PR middle-end/38338 */
/* { dg-options "-O0" } */
/* { dg-options "-O0 -fPIC" { target fpic } } */
typedef void (*fnp) (void);
static char
foo (char x)
{
return x;
}
static void *
bar (char x)
{
void *args = __builtin_apply_args ();
return __builtin_apply ((fnp) foo, args, sizeof (void *));
}