aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-04-16 22:08:49 +0000
committerJeff Law <law@gcc.gnu.org>1998-04-16 16:08:49 -0600
commit1ac4f79956d6a082506ad3eb5dbcfd226517b55d (patch)
tree0c19f28ad6da5b7ea9c22854ed288583376860ed /gcc
parenta2e687765acbe0eccc1d66bcbd26733390b934aa (diff)
downloadgcc-1ac4f79956d6a082506ad3eb5dbcfd226517b55d.zip
gcc-1ac4f79956d6a082506ad3eb5dbcfd226517b55d.tar.gz
gcc-1ac4f79956d6a082506ad3eb5dbcfd226517b55d.tar.bz2
* function.c (assign_outer_stack_local): Make static and add prototype.
From-SVN: r19245
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/function.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7becfbd8..183c402 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 8f29b73..d747ce6 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;