From 1ac4f79956d6a082506ad3eb5dbcfd226517b55d Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Thu, 16 Apr 1998 22:08:49 +0000 Subject: [PATCH] * function.c (assign_outer_stack_local): Make static and add prototype. From-SVN: r19245 --- gcc/ChangeLog | 2 ++ gcc/function.c | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7becfbd871b..183c402ef0d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ Thu Apr 16 22:41:02 1998 Jeffrey A Law (law@cygnus.com) + * function.c (assign_outer_stack_local): Make static and add prototype. + * haifa-sched.c (build_control_flow): Accept raw data as inputs instead of computing it locally. Callers changed. (find_rgns): Several new arguments. Callers changed. diff --git a/gcc/function.c b/gcc/function.c index 8f29b73f418..d747ce67bf3 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -405,6 +405,8 @@ struct fixup_replacement /* Forward declarations. */ +static rtx assign_outer_stack_local PROTO ((enum machine_mode, HOST_WIDE_INT, + int, struct function *)); static struct temp_slot *find_temp_slot_from_address PROTO((rtx)); static void put_reg_into_stack PROTO((struct function *, rtx, tree, enum machine_mode, enum machine_mode, @@ -728,7 +730,7 @@ assign_stack_local (mode, size, align) First three arguments are same as in preceding function. The last argument specifies the function to allocate in. */ -rtx +static rtx assign_outer_stack_local (mode, size, align, function) enum machine_mode mode; HOST_WIDE_INT size; -- 2.30.2