2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / eh / forced4.C
blob519d8ca32bf9ea9fe152b953d09b1303c9c07d24
1 // HP-UX libunwind.so doesn't provide _UA_END_OF_STACK.
2 // { dg-do run { xfail "ia64-hp-hpux11.*" } }
4 // Test that forced unwinding does not call std::unexpected going 
5 // throw a function with a non-empty exception spec.
7 #include <unwind.h>
8 #include <stdlib.h>
9 #include <string.h>
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)
18   if (actions & _UA_END_OF_STACK)
19     abort ();
20   return _URC_NO_REASON;
23 static void __attribute__((noreturn))
24 force_unwind ()
26   _Unwind_Exception *exc = new _Unwind_Exception;
27   // exception_class might not be a scalar.
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);
33 #else
34   _Unwind_SjLj_ForcedUnwind (exc, force_unwind_stop, 0);
35 #endif
37   abort ();
40 static void
41 doit ()
42 #if __cplusplus <= 201402L
43 throw(int)                      // { dg-warning "deprecated" "" { target { c++11 && { ! c++17 } } } }
44 #endif
46   force_unwind ();
49 int main()
50
51   try {
52     doit ();
53   } catch (...) {
54   }