Commit 6fe79279 by Kazu Hirata Committed by Kazu Hirata

function.c (combine_temp_slots, [...]): Make them static.

	* function.c (combine_temp_slots, assign_parms,
	expand_pending_sizes): Make them static.
	* tree.h: Remove the corresponding prototypes.

From-SVN: r90357
parent 3f5d8b4b
2004-11-09 Kazu Hirata <kazu@cs.umass.edu> 2004-11-09 Kazu Hirata <kazu@cs.umass.edu>
* function.c (combine_temp_slots, assign_parms,
expand_pending_sizes): Make them static.
* tree.h: Remove the corresponding prototypes.
2004-11-09 Kazu Hirata <kazu@cs.umass.edu>
* emit-rtl.c (copy_most_rtx): Remove. * emit-rtl.c (copy_most_rtx): Remove.
* rtl.h: Remove the corresponding prototype. * rtl.h: Remove the corresponding prototype.
......
...@@ -850,7 +850,7 @@ assign_temp (tree type_or_decl, int keep, int memory_required, ...@@ -850,7 +850,7 @@ assign_temp (tree type_or_decl, int keep, int memory_required,
done for BLKmode slots because we can be sure that we won't have alignment done for BLKmode slots because we can be sure that we won't have alignment
problems in this case. */ problems in this case. */
void static void
combine_temp_slots (void) combine_temp_slots (void)
{ {
struct temp_slot *p, *q, *next, *next_q; struct temp_slot *p, *q, *next, *next_q;
...@@ -3011,7 +3011,7 @@ assign_parms_unsplit_complex (tree orig_fnargs, tree fnargs) ...@@ -3011,7 +3011,7 @@ assign_parms_unsplit_complex (tree orig_fnargs, tree fnargs)
/* Assign RTL expressions to the function's parameters. This may involve /* Assign RTL expressions to the function's parameters. This may involve
copying them into registers and using those registers as the DECL_RTL. */ copying them into registers and using those registers as the DECL_RTL. */
void static void
assign_parms (tree fndecl) assign_parms (tree fndecl)
{ {
struct assign_parm_data_all all; struct assign_parm_data_all all;
...@@ -3970,7 +3970,7 @@ expand_main_function (void) ...@@ -3970,7 +3970,7 @@ expand_main_function (void)
for the current function. The PENDING_SIZES are a TREE_LIST. The for the current function. The PENDING_SIZES are a TREE_LIST. The
TREE_VALUE of each node is a SAVE_EXPR. */ TREE_VALUE of each node is a SAVE_EXPR. */
void static void
expand_pending_sizes (tree pending_sizes) expand_pending_sizes (tree pending_sizes)
{ {
tree tem; tree tem;
......
...@@ -3584,7 +3584,6 @@ extern int simple_cst_list_equal (tree, tree); ...@@ -3584,7 +3584,6 @@ extern int simple_cst_list_equal (tree, tree);
extern void dump_tree_statistics (void); extern void dump_tree_statistics (void);
extern void expand_function_end (void); extern void expand_function_end (void);
extern void expand_function_start (tree); extern void expand_function_start (tree);
extern void expand_pending_sizes (tree);
extern void recompute_tree_invarant_for_addr_expr (tree); extern void recompute_tree_invarant_for_addr_expr (tree);
extern bool is_global_var (tree t); extern bool is_global_var (tree t);
extern bool needs_to_live_in_memory (tree); extern bool needs_to_live_in_memory (tree);
...@@ -3613,11 +3612,9 @@ extern void init_function_for_compilation (void); ...@@ -3613,11 +3612,9 @@ extern void init_function_for_compilation (void);
extern void allocate_struct_function (tree); extern void allocate_struct_function (tree);
extern void init_function_start (tree); extern void init_function_start (tree);
extern bool use_register_for_decl (tree); extern bool use_register_for_decl (tree);
extern void assign_parms (tree);
extern void setjmp_vars_warning (tree); extern void setjmp_vars_warning (tree);
extern void setjmp_args_warning (void); extern void setjmp_args_warning (void);
extern void init_temp_slots (void); extern void init_temp_slots (void);
extern void combine_temp_slots (void);
extern void free_temp_slots (void); extern void free_temp_slots (void);
extern void pop_temp_slots (void); extern void pop_temp_slots (void);
extern void push_temp_slots (void); extern void push_temp_slots (void);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment