aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@cygnus.com>1998-05-04 20:24:46 +0000
committerJim Wilson <wilson@gcc.gnu.org>1998-05-04 13:24:46 -0700
commit4330b0e77d631d8f594efac33d2a3b6fd4757b2c (patch)
tree4ccd02da587ad3ba26c24e3a135fd1ff19fd3682 /gcc
parentb57062ca3d3717d1697e72bb4d95b8b7eb3e6a45 (diff)
downloadgcc-4330b0e77d631d8f594efac33d2a3b6fd4757b2c.zip
gcc-4330b0e77d631d8f594efac33d2a3b6fd4757b2c.tar.gz
gcc-4330b0e77d631d8f594efac33d2a3b6fd4757b2c.tar.bz2
Fix mips-tfile failure on alpha, from Holger Bauer.
* alpha.h (DBX_CONTIN_LENGTH): Decrease to 3000. From-SVN: r19533
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/alpha/alpha.h6
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 99eff38..7e04af5 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Mon May 4 20:23:51 1998 Jim Wilson <wilson@cygnus.com>
+
+ * alpha.h (DBX_CONTIN_LENGTH): Decrease to 3000.
+
1998-05-04 Ulrich Drepper <drepper@cygnus.com>
* c-common.c (format_char_info): Add new field hhlen.
diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h
index 6fd6acd..6f2dc42 100644
--- a/gcc/config/alpha/alpha.h
+++ b/gcc/config/alpha/alpha.h
@@ -2309,8 +2309,10 @@ extern void alpha_output_lineno ();
alpha_output_filename (STREAM, NAME)
extern void alpha_output_filename ();
-/* mips-tfile.c limits us to strings of one page. */
-#define DBX_CONTIN_LENGTH 4000
+/* mips-tfile.c limits us to strings of one page. We must underestimate this
+ number, because the real length runs past this up to the next
+ continuation point. This is really a dbxout.c bug. */
+#define DBX_CONTIN_LENGTH 3000
/* By default, turn on GDB extensions. */
#define DEFAULT_GDB_EXTENSIONS 1