diff options
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index 31d223a..7079797 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -441,6 +441,11 @@ struct rtl_data GTY(()) /* True if dbr_schedule has already been called for this function. */ bool dbr_scheduled_p; + + /* True if current function can not throw. Unlike + TREE_NOTHROW (current_function_decl) it is set even for overwritable + function where currently compiled version of it is nothrow. */ + bool nothrow; }; #define return_label (crtl->x_return_label) |