diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-09 19:19:41 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-09 19:19:41 +0000 |
commit | 6fe79279b75e0e1bc82d7eb56a3d8fa15aac18e2 (patch) | |
tree | af34566ddd9afbc40b40bff7ef56cfe85e3f1864 /gcc/function.c | |
parent | 3f5d8b4b19550772026ce8ace298ba65992831f8 (diff) | |
download | gcc-6fe79279b75e0e1bc82d7eb56a3d8fa15aac18e2.zip gcc-6fe79279b75e0e1bc82d7eb56a3d8fa15aac18e2.tar.gz gcc-6fe79279b75e0e1bc82d7eb56a3d8fa15aac18e2.tar.bz2 |
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
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 82776e7..338ad96 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; |