OSDN Git Service

* c-c++-common/raw-string-1.c: Combine C and C++ raw string tests.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / cleanup-5.C
1 /* HP-UX libunwind.so doesn't provide _UA_END_OF_STACK */
2 /* { dg-do run } */
3 /* { dg-options "-fexceptions" } */
4 /* { dg-skip-if "" { "ia64-*-hpux11.*" }  { "*" } { "" } } */
5 /* Verify that cleanups work with exception handling.  */
6
7 #include <unwind.h>
8 #include <stdlib.h>
9 #include <string.h>
10
11 static _Unwind_Reason_Code
12 force_unwind_stop (int version, _Unwind_Action actions,
13                    _Unwind_Exception_Class exc_class,
14                    struct _Unwind_Exception *exc_obj,
15                    struct _Unwind_Context *context,
16                    void *stop_parameter)
17 {
18   if (actions & _UA_END_OF_STACK)
19     abort ();
20   return _URC_NO_REASON;
21 }
22
23 static void force_unwind ()
24 {
25   struct _Unwind_Exception *exc 
26     = (struct _Unwind_Exception *) malloc (sizeof (*exc));
27   memset (&exc->exception_class, 0, sizeof (exc->exception_class));
28   exc->exception_cleanup = 0;
29                    
30 #ifndef __USING_SJLJ_EXCEPTIONS__
31   _Unwind_ForcedUnwind (exc, force_unwind_stop, 0);
32 #else
33   _Unwind_SjLj_ForcedUnwind (exc, force_unwind_stop, 0);
34 #endif
35                    
36   abort ();
37 }
38
39 static void handler (void *p __attribute__((unused)))
40 {
41   exit (0);
42 }
43
44 static void doit ()
45 {
46   char dummy __attribute__((cleanup (handler)));
47   force_unwind ();
48 }
49
50 int main()
51
52   doit ();
53   abort ();
54 }