diff options
author | Bernd Schmidt <bernds@cygnus.co.uk> | 1999-08-09 14:00:21 +0000 |
---|---|---|
committer | Bernd Schmidt <crux@gcc.gnu.org> | 1999-08-09 14:00:21 +0000 |
commit | 49ad7cfa7ac804b56cff13d70022020126f24c55 (patch) | |
tree | 0c9ea6c13240638f450e4b7c92af4127356208c0 /gcc/stmt.c | |
parent | 0dde4175efc346c70069a8a090590d3e63be04fa (diff) | |
download | gcc-49ad7cfa7ac804b56cff13d70022020126f24c55.zip gcc-49ad7cfa7ac804b56cff13d70022020126f24c55.tar.gz gcc-49ad7cfa7ac804b56cff13d70022020126f24c55.tar.bz2 |
Include function.h in most files.
Include function.h in most files. Remove most of the global variables
duplicated in function.h. Add accessor macros for them which access
current_function. Delete INLINE_HEADER rtx and related code, replace
with code using struct function to store inlining related data.
From-SVN: r28626
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -625,8 +625,8 @@ expand_goto (label) tree link; /* Find the corresponding handler slot for this label. */ - handler_slot = p->nonlocal_goto_handler_slots; - for (link = p->nonlocal_labels; TREE_VALUE (link) != label; + handler_slot = p->x_nonlocal_goto_handler_slots; + for (link = p->x_nonlocal_labels; TREE_VALUE (link) != label; link = TREE_CHAIN (link)) handler_slot = XEXP (handler_slot, 1); handler_slot = XEXP (handler_slot, 0); @@ -643,7 +643,7 @@ expand_goto (label) if (HAVE_nonlocal_goto) emit_insn (gen_nonlocal_goto (lookup_static_chain (label), copy_rtx (handler_slot), - copy_rtx (p->nonlocal_goto_stack_level), + copy_rtx (p->x_nonlocal_goto_stack_level), label_ref)); else #endif @@ -669,7 +669,7 @@ expand_goto (label) hard_frame_pointer_rtx)); /* Restore the stack pointer. Note this uses fp just restored. */ - addr = p->nonlocal_goto_stack_level; + addr = p->x_nonlocal_goto_stack_level; if (addr) addr = replace_rtx (copy_rtx (addr), virtual_stack_vars_rtx, |