1 /* PR middle-end/32758 */
2 /* HP-UX libunwind.so doesn't provide _UA_END_OF_STACK */
4 /* { dg-options "-O2 -fexceptions" } */
5 /* { dg-skip-if "" { "ia64-*-hpux11.*" } } */
6 /* { dg-skip-if "" { ! nonlocal_goto } } */
7 /* Verify unwind info in presence of alloca. */
13 static _Unwind_Reason_Code
14 force_unwind_stop (int version
, _Unwind_Action actions
,
15 _Unwind_Exception_Class exc_class
,
16 struct _Unwind_Exception
*exc_obj
,
17 struct _Unwind_Context
*context
,
20 if (actions
& _UA_END_OF_STACK
)
22 return _URC_NO_REASON
;
25 static void force_unwind (void)
27 struct _Unwind_Exception
*exc
= malloc (sizeof (*exc
));
28 memset (&exc
->exception_class
, 0, sizeof (exc
->exception_class
));
29 exc
->exception_cleanup
= 0;
31 #ifndef __USING_SJLJ_EXCEPTIONS__
32 _Unwind_ForcedUnwind (exc
, force_unwind_stop
, 0);
34 _Unwind_SjLj_ForcedUnwind (exc
, force_unwind_stop
, 0);
40 __attribute__((noinline
))
41 void foo (void *x
__attribute__((unused
)))
46 __attribute__((noinline
))
47 int bar (unsigned int x
)
49 void *y
= __builtin_alloca (x
);
54 static void handler (void *p
__attribute__((unused
)))
59 __attribute__((noinline
))
62 char dummy
__attribute__((cleanup (handler
)));