blob: 5dfd44349262e3feff12614f1788106edbe98acb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* 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 *));
}
|