diff options
author | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-20 13:18:17 +0000 |
---|---|---|
committer | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-20 13:18:17 +0000 |
commit | 08513b52560bee6079762909bb64397b85731653 (patch) | |
tree | ef38c36222ccc381ac63f61190043f19cbf2124f /gcc/except.h | |
parent | f62c22a7d66f482c175bb757ba68140fbfd4d7ca (diff) | |
download | gcc-08513b52560bee6079762909bb64397b85731653.tar.gz |
current_function -> cfun
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31033 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.h')
-rw-r--r-- | gcc/except.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/except.h b/gcc/except.h index befbccc94e6..6120af4b30c 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -138,15 +138,15 @@ struct eh_status rtx x_eh_return_stub_label; }; -#define ehstack (current_function->eh->x_ehstack) -#define catchstack (current_function->eh->x_catchstack) -#define ehqueue (current_function->eh->x_ehqueue) -#define catch_clauses (current_function->eh->x_catch_clauses) -#define false_label_stack (current_function->eh->x_false_label_stack) -#define caught_return_label_stack (current_function->eh->x_caught_return_label_stack) -#define protect_list (current_function->eh->x_protect_list) -#define current_function_ehc (current_function->eh->ehc) -#define eh_return_stub_label (current_function->eh->x_eh_return_stub_label) +#define ehstack (cfun->eh->x_ehstack) +#define catchstack (cfun->eh->x_catchstack) +#define ehqueue (cfun->eh->x_ehqueue) +#define catch_clauses (cfun->eh->x_catch_clauses) +#define false_label_stack (cfun->eh->x_false_label_stack) +#define caught_return_label_stack (cfun->eh->x_caught_return_label_stack) +#define protect_list (cfun->eh->x_protect_list) +#define current_function_ehc (cfun->eh->ehc) +#define eh_return_stub_label (cfun->eh->x_eh_return_stub_label) #ifdef TREE_CODE /* Start an exception handling region. All instructions emitted after |