aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2000-09-04 14:32:02 +0000
committerAndrew Haley <aph@gcc.gnu.org>2000-09-04 14:32:02 +0000
commit5e640c56de32e17c7a6677ad4c06d8dda4f4bbff (patch)
tree79ed5aded909a54de558a4bdf78e50285dea3fde
parent90deb76dc215b85562e894e99fb38e31151af664 (diff)
downloadgcc-5e640c56de32e17c7a6677ad4c06d8dda4f4bbff.zip
gcc-5e640c56de32e17c7a6677ad4c06d8dda4f4bbff.tar.gz
gcc-5e640c56de32e17c7a6677ad4c06d8dda4f4bbff.tar.bz2
dwarf2out.c: (stack_adjust_offset): New prototype.
2000-09-04 Andrew Haley <aph@redhat.com> * dwarf2out.c: (stack_adjust_offset): New prototype. From-SVN: r36138
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/dwarf2out.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 04a7af7..d473d31 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2000-09-04 Andrew Haley <aph@redhat.com>
+
+ * dwarf2out.c: (stack_adjust_offset): New prototype.
+
Wed Jan 1 00:23:59 MET 1997 Jan Hubicka <jh@suse.cz>
* combine.c (make_extraction): Fix rtx_cost comparison to
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 1b55383..27d2663 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -230,6 +230,7 @@ static void lookup_cfa PARAMS ((dw_cfa_location *));
static void reg_save PARAMS ((const char *, unsigned,
unsigned, long));
static void initial_return_save PARAMS ((rtx));
+static long stack_adjust_offset PARAMS ((rtx));
static void output_cfi PARAMS ((dw_cfi_ref, dw_fde_ref));
static void output_call_frame_info PARAMS ((int));
static void dwarf2out_stack_adjust PARAMS ((rtx));
@@ -1096,7 +1097,8 @@ initial_return_save (rtl)
/* Given a SET, calculate the amount of stack adjustment it
contains. */
-static long stack_adjust_offset (pattern)
+static long
+stack_adjust_offset (pattern)
rtx pattern;
{
rtx src = SET_SRC (pattern);