diff options
Diffstat (limited to 'gcc/except.h')
-rw-r--r-- | gcc/except.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/except.h b/gcc/except.h index b498a69..d20b606 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -24,6 +24,12 @@ typedef struct rtx_def *_except_rtx; #define rtx _except_rtx #endif +/* The labels generated by expand_builtin_eh_stub and + expand_builtin_eh_stub_old. */ + +extern rtx current_function_eh_stub_label; +extern rtx current_function_eh_old_stub_label; + #ifdef TREE_CODE /* A stack of labels. CHAIN points to the next entry in the stack. */ @@ -82,7 +88,6 @@ struct eh_queue { struct eh_node *tail; }; - /* Start an exception handling region. All instructions emitted after this point are considered to be part of the region until expand_eh_region_end () is invoked. */ |