* function.c (assign_outer_stack_local): Make static and add prototype.

From-SVN: r19245
This commit is contained in:
Jeffrey A Law 1998-04-16 22:08:49 +00:00 committed by Jeff Law
parent a2e687765a
commit 1ac4f79956
2 changed files with 5 additions and 1 deletions

View File

@ -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.

View File

@ -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;