aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-26 08:31:11 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-26 08:31:11 +0000
commitef767573d90e2c2647fd54d16eb8e7555f2420d1 (patch)
tree2c332ed78b6694434625c463d3fa3482d9d9cd4a
parent01e2ba9b256324669b01d4902c26b978b467e6c0 (diff)
* tree.h (dwarf2out_def_cfa, dwarf2out_args_size,
dwarf2out_reg_save, new_loc_descr): Update prototypes for recent dwarf2out.c change. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@72946 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree.h8
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 68c5d801de2..8cb18118cd9 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
2003-10-26 Andreas Jaeger <aj@suse.de>
+ * tree.h (dwarf2out_def_cfa, dwarf2out_args_size,
+ dwarf2out_reg_save, new_loc_descr): Update prototypes for recent
+ dwarf2out.c change.
+
* toplev.c (default_pch_valid_p): Fix warning.
2003-10-25 Roger Sayle <roger@eyesopen.com>
diff --git a/gcc/tree.h b/gcc/tree.h
index c240e92e24c..e6217413e90 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -3010,7 +3010,7 @@ extern char *dwarf2out_cfi_label (void);
/* Entry point to update the canonical frame address (CFA). */
-extern void dwarf2out_def_cfa (const char *, unsigned, long);
+extern void dwarf2out_def_cfa (const char *, unsigned, HOST_WIDE_INT);
/* Add the CFI for saving a register window. */
@@ -3019,15 +3019,15 @@ extern void dwarf2out_window_save (const char *);
/* Add a CFI to update the running total of the size of arguments pushed
onto the stack. */
-extern void dwarf2out_args_size (const char *, long);
+extern void dwarf2out_args_size (const char *, HOST_WIDE_INT);
/* Entry point for saving a register to the stack. */
-extern void dwarf2out_reg_save (const char *, unsigned, long);
+extern void dwarf2out_reg_save (const char *, unsigned, HOST_WIDE_INT);
/* Entry point for saving the return address in the stack. */
-extern void dwarf2out_return_save (const char *, long);
+extern void dwarf2out_return_save (const char *, HOST_WIDE_INT);
/* Entry point for saving the return address in a register. */