diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-16 11:04:59 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-16 11:04:59 +0000 |
commit | 0785e435c4757f7248b96902a01350c7b2060c32 (patch) | |
tree | df38d256a957a8ffd8b53d92a0e7ccf9f23354bc /gcc/cgraph.h | |
parent | 098f93d5666b1bd9c7419cc89a4feeb55363a460 (diff) | |
download | gcc-0785e435c4757f7248b96902a01350c7b2060c32.tar.gz |
* i386.c (ix86_fntype_regparm): Rename from ...
(ix86_function_regparm): ... this one; add fastcall and local
functions.
(ix86_function_ok_for_sibcall): Update.
(ix86_return_pops_args): Likewise.
(init_cumulative_args): Likewise.
(x86_can_output_mi_thunk): Likewise.
(function_arg): Fix formating.
(x86_this_parameter): Fix fastcall.
(x86_output_mi_thunk): Likewise.
* cgraph.c (cgraph_mark_needed_node): Do not mark functions without
body as reachable; mark nested functions as needed too.
(dump_cgraph): Do not output global.calls.
* cgraph.h (cgraph_global_info): Kill.
* cgraphunit.c (cgraph_finalize_function): Enqueue needed functions.
(record_call_1): Speedup.
(cgraph_analyze_function): Break out from ...; compute inlining
parameters.
(cgraph_finalize_compilation_unit): ... here.
(cgraph_mark_inline): Kill computation of calls.
(cgraph_decide_inlining): Do not compute most of initial values.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70504 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 849c8ee5486..f96ac0d0d59 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -52,9 +52,6 @@ struct cgraph_global_info GTY(()) /* Estimated size of the function after inlining. */ int insns; - /* Number of direct calls not inlined into the function body. */ - int calls; - /* Number of times given function will be cloned during output. */ int cloned_times; |