c++: Relax too strict assert in stabilize_expr [PR111160]
[official-gcc.git] / gcc / testsuite / gcc.dg / cleanup-8.c
blob87f4186561e53171e3ed9f57da3d8738f11d9b2c
1 /* { dg-do run { target hppa*-*-hpux* *-*-linux* *-*-gnu* powerpc*-*-darwin* *-*-darwin[912]* *-*-uclinux* } } */
2 /* { dg-options "-fexceptions -fnon-call-exceptions -O2" } */
3 /* { dg-require-effective-target exceptions } */
4 /* Verify that cleanups work with exception handling through signal
5 frames. */
7 #include <unwind.h>
8 #include <stdlib.h>
9 #include <signal.h>
10 #include <string.h>
12 static _Unwind_Reason_Code
13 force_unwind_stop (int version, _Unwind_Action actions,
14 _Unwind_Exception_Class exc_class,
15 struct _Unwind_Exception *exc_obj,
16 struct _Unwind_Context *context,
17 void *stop_parameter)
19 if (actions & _UA_END_OF_STACK)
20 abort ();
21 return _URC_NO_REASON;
24 static void force_unwind ()
26 struct _Unwind_Exception *exc = malloc (sizeof (*exc));
27 memset (&exc->exception_class, 0, sizeof (exc->exception_class));
28 exc->exception_cleanup = 0;
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
36 abort ();
39 int count;
40 char *null;
42 static void counter (void *p __attribute__((unused)))
44 ++count;
47 static void handler (void *p __attribute__((unused)))
49 if (count != 2)
50 abort ();
51 exit (0);
54 static int __attribute__((noinline)) fn5 ()
56 char dummy __attribute__((cleanup (counter)));
57 force_unwind ();
58 return 0;
61 static void fn4 (int sig)
63 char dummy __attribute__((cleanup (counter)));
64 fn5 ();
65 null = NULL;
68 static void fn3 ()
70 abort ();
73 static int __attribute__((noinline)) fn2 ()
75 *null = 0;
76 fn3 ();
77 return 0;
80 static int __attribute__((noinline)) fn1 ()
82 signal (SIGSEGV, fn4);
83 signal (SIGBUS, fn4);
84 fn2 ();
85 return 0;
88 static int __attribute__((noinline)) fn0 ()
90 char dummy __attribute__((cleanup (handler)));
91 fn1 ();
92 null = 0;
93 return 0;
96 int main()
98 fn0 ();
99 abort ();