calls.c (split_complex_values, [...]): Make them static.
authorKazu Hirata <kazu@cs.umass.edu>
Mon, 8 Nov 2004 19:03:17 +0000 (19:03 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Mon, 8 Nov 2004 19:03:17 +0000 (19:03 +0000)
* calls.c (split_complex_values, split_complex_types): Make
them static.
* expr.h: Remove the corresponding prototypes.

From-SVN: r90281

gcc/ChangeLog
gcc/calls.c
gcc/expr.h

index 711afc566e88be8df681f54f5e1d758c0cde6721..748e16b8c0049c0313c5914691f2a655bb076735 100644 (file)
@@ -1,3 +1,9 @@
+2004-11-08  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * calls.c (split_complex_values, split_complex_types): Make
+       them static.
+       * expr.h: Remove the corresponding prototypes.
+
 2004-11-08  Richard Earnshaw  <rearnsha@arm.com>
 
        * arm.c (arm_handle_notshared_attribute): Wrap declaration and use
index 09c24d7c27b2cb2930f1f4392cccc9aa1439136f..cfcf01cf4673b70831a693171b07c1d23d9fc8d8 100644 (file)
@@ -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;
index ec5f94317141440b258e365b8d8ef693e2b74f18..fbb34a6d7346553bcb39a19ca77ef06c68af6627 100644 (file)
@@ -188,9 +188,6 @@ do {                                                        \
 #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) 0
 #endif
 
-tree split_complex_types (tree);
-tree split_complex_values (tree);
-
 /* Supply a default definition of STACK_SAVEAREA_MODE for emit_stack_save.
    Normally move_insn, so Pmode stack pointer.  */