diff options
author | loewis <loewis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-19 18:25:27 +0000 |
---|---|---|
committer | loewis <loewis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-19 18:25:27 +0000 |
commit | 78147e84503de46c41e27d1c461a37fcaf37a25f (patch) | |
tree | 741fb4699c20e2b971024d7d050b856266030a84 /gcc/rtl.h | |
parent | f2d8342774dcc55765530e12f7f6914963b9d1b7 (diff) | |
download | gcc-78147e84503de46c41e27d1c461a37fcaf37a25f.tar.gz |
* emit-rtl.c (push_to_full_sequence, end_full_sequence): New functions.
* except.c (emit_cleanup_handler): Use them.
(expand_end_all_catch): Likewise.
* function.c (fixup_var_refs): Likewise.
(expand_function_end): Clear catch_clauses_last.
* rtl.h (push_to_full_sequence, end_full_sequence): Declare.
* except.h (struct eh_status): New field x_catch_clauses_last.
(catch_clauses_last): New define.
* cp/except.c (expand_exception_blocks): Clear catch_clauses_last.
* java/except.c (emit_handlers): Clear catch_clauses_last.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32643 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 46750ac060d..fc344cef75b 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1012,6 +1012,8 @@ extern rtx get_last_insn_anywhere PARAMS ((void)); extern void start_sequence PARAMS ((void)); extern void push_to_sequence PARAMS ((rtx)); extern void end_sequence PARAMS ((void)); +extern void push_to_full_sequence PARAMS ((rtx, rtx)); +extern void end_full_sequence PARAMS ((rtx*, rtx*)); extern rtx gen_sequence PARAMS ((void)); extern rtx immed_double_const PARAMS ((HOST_WIDE_INT, HOST_WIDE_INT, enum machine_mode)); extern rtx force_const_mem PARAMS ((enum machine_mode, rtx)); |