diff options
author | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-16 12:51:14 +0000 |
---|---|---|
committer | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-16 12:51:14 +0000 |
commit | bfad8f20e9528738c47cdfdfc38251ba2016b332 (patch) | |
tree | ce69f93d9c4480d6cb35edbb951c8d628e4c8653 /gcc/except.h | |
parent | 2ab694df9e6b95addfe9e1a539b59742b1199c4e (diff) | |
download | gcc-bfad8f20e9528738c47cdfdfc38251ba2016b332.tar.gz |
* except.h (in_same_eh_region): New prototype.
(free_insn_eh_region, init_insn_eh_region): New prototypes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18623 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.h')
-rw-r--r-- | gcc/except.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/except.h b/gcc/except.h index cdc1bd7356c..0356bd398e9 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -292,3 +292,10 @@ void expand_builtin_set_return_addr_reg PROTO((tree)); void expand_builtin_set_eh_regs PROTO((tree, tree)); rtx expand_builtin_dwarf_reg_size PROTO((tree, rtx)); #endif + + +/* Checking whether 2 instructions are within the same exception region. */ + +int in_same_eh_region PROTO((rtx, rtx)); +void free_insn_eh_region PROTO((void)); +void init_insn_eh_region PROTO((rtx, int)); |