Add qdf24xx base tuning support.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr47725.c
blob03d5d36c3216b3983182efdb0159ea19df3cbe1d
1 /* { dg-do compile } */
3 struct _Unwind_Context
5 void *reg[17];
6 void *ra;
7 };
8 extern void bar (struct _Unwind_Context *);
9 void
10 __frame_state_for (void *pc_target)
12 struct _Unwind_Context context;
13 __builtin_memset (&context, 0, sizeof (struct _Unwind_Context));
14 context.ra = pc_target;
15 bar (&context);