diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-09 19:19:41 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-09 19:19:41 +0000 |
commit | 3f0895d3678c25b46c25f797ddb1fa7853ebf931 (patch) | |
tree | af34566ddd9afbc40b40bff7ef56cfe85e3f1864 /gcc/function.c | |
parent | 4488cd95f313aaa446f06dea2e84bb8fde2bb36f (diff) | |
download | gcc-3f0895d3678c25b46c25f797ddb1fa7853ebf931.tar.gz |
* function.c (combine_temp_slots, assign_parms,
expand_pending_sizes): Make them static.
* tree.h: Remove the corresponding prototypes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90357 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/function.c b/gcc/function.c index 82776e7cd7a..338ad967491 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -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 problems in this case. */ -void +static void combine_temp_slots (void) { struct temp_slot *p, *q, *next, *next_q; @@ -3011,7 +3011,7 @@ assign_parms_unsplit_complex (tree orig_fnargs, tree fnargs) /* Assign RTL expressions to the function's parameters. This may involve copying them into registers and using those registers as the DECL_RTL. */ -void +static void assign_parms (tree fndecl) { struct assign_parm_data_all all; @@ -3970,7 +3970,7 @@ expand_main_function (void) for the current function. The PENDING_SIZES are a TREE_LIST. The TREE_VALUE of each node is a SAVE_EXPR. */ -void +static void expand_pending_sizes (tree pending_sizes) { tree tem; |