diff options
Diffstat (limited to 'gcc/except.h')
-rw-r--r-- | gcc/except.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/except.h b/gcc/except.h index 3e9a39cbb5f..f1dbf90c2a9 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -171,6 +171,10 @@ struct GTY(()) eh_region_d Each region gets its own psuedos so that if there are nested exceptions we do not overwrite the values of the first exception. */ rtx exc_ptr_reg, filter_reg; + + /* True if this region should use __cxa_end_cleanup instead + of _Unwind_Resume. */ + bool use_cxa_end_cleanup; }; typedef struct eh_landing_pad_d *eh_landing_pad; |