diff options
author | Richard Henderson <rth@redhat.com> | 2004-07-01 02:54:20 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-07-01 02:54:20 -0700 |
commit | b79c52841bdf69b9788387c9d835d854de09dcb5 (patch) | |
tree | cb23537d10ab4a9a66cb83603753157467408971 /gcc/integrate.c | |
parent | ede1a3872913df59f3a1f4299ec5f6c7706d3b7b (diff) | |
download | gcc-b79c52841bdf69b9788387c9d835d854de09dcb5.tar.gz |
function.h (struct function): Remove x_function_call_count.
* function.h (struct function): Remove x_function_call_count.
(function_call_count): Remove.
* calls.c (expand_call): Don't set it.
* integrate.c (copy_rtx_and_substitute): Likewise.
* function.h (struct function): Remove x_cleanup_label.
(cleanup_label): Remove.
* stmt.c (expand_value_return): Don't use it.
* function.c (free_after_compilation): Don't set it.
(expand_function_start): Likewise. Remove parms_have_cleanups arg.
* cfgexpand.c (tree_expand_cfg): Update call.
* tree.h (expand_function_start): Update decl.
From-SVN: r83966
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index 80eb84bba8c..ee2c7a7220b 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -439,13 +439,6 @@ copy_rtx_and_substitute (rtx orig, struct inline_remap *map, int for_lhs) && ! (CODE_LABEL_NUMBER (XEXP (copy, 0)) >= get_first_label_num () && CODE_LABEL_NUMBER (XEXP (copy, 0)) < max_label_num ())); - /* If we have made a nonlocal label local, it means that this - inlined call will be referring to our nonlocal goto handler. - So make sure we create one for this block; we normally would - not since this is not otherwise considered a "call". */ - if (LABEL_REF_NONLOCAL_P (orig) && ! LABEL_REF_NONLOCAL_P (copy)) - function_call_count++; - return copy; case PC: |