summaryrefslogtreecommitdiff
path: root/gcc/calls.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-08 19:03:17 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-08 19:03:17 +0000
commit5ab297450d4695be0023e907a1ea55c1592d3c94 (patch)
treea14a4c1b65582bd1b5e47a5575f30beb26f0b4e4 /gcc/calls.c
parent67793555f978a4648a76d82b57d003ae598e22d1 (diff)
downloadgcc-5ab297450d4695be0023e907a1ea55c1592d3c94.tar.gz
* calls.c (split_complex_values, split_complex_types): Make
them static. * expr.h: Remove the corresponding prototypes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90281 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/calls.c')
-rw-r--r--gcc/calls.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/calls.c b/gcc/calls.c
index 09c24d7c27b..cfcf01cf467 100644
--- a/gcc/calls.c
+++ b/gcc/calls.c
@@ -145,6 +145,8 @@ static int check_sibcall_argument_overlap (rtx, struct arg_data *, int);
static int combine_pending_stack_adjustment_and_call (int, struct args_size *,
unsigned int);
static bool shift_returned_value (tree, rtx *);
+static tree split_complex_values (tree);
+static tree split_complex_types (tree);
#ifdef REG_PARM_STACK_SPACE
static rtx save_fixed_argument_area (int, rtx, int *, int *);
@@ -3023,7 +3025,7 @@ fixup_tail_calls (void)
/* Traverse an argument list in VALUES and expand all complex
arguments into their components. */
-tree
+static tree
split_complex_values (tree values)
{
tree p;
@@ -3077,7 +3079,7 @@ split_complex_values (tree values)
/* Traverse a list of TYPES and expand all complex types into their
components. */
-tree
+static tree
split_complex_types (tree types)
{
tree p;