blob: 5dfd44349262e3feff12614f1788106edbe98acb [file] [log] [blame]
/* PR middle-end/38338 */
/* { dg-options "-O0" } */
/* { dg-options "-O0 -fPIC" { target fpic } } */
/* { dg-require-effective-target untyped_assembly } */
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 *));
}