aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/dbxout.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 503d66b..98387aa 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2000-10-09 J. David Anglin <dave@hiauly1.hia.nrc.ca>
+
+ * dbxout.c (dbxout_source_line): Remove extra tab.
+
2000-10-09 Hans-Peter Nilsson <hp@bitrange.com>
* config/elfos.h (UNIQUE_SECTION): Apply STRIP_NAME_ENCODING on name.
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index 7bf8889..7da5ad8 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -559,7 +559,7 @@ dbxout_source_line (file, filename, lineno)
#ifdef ASM_OUTPUT_SOURCE_LINE
ASM_OUTPUT_SOURCE_LINE (file, lineno);
#else
- fprintf (file, "\t%s%d,0,%d\n", ASM_STABD_OP, N_SLINE, lineno);
+ fprintf (file, "%s%d,0,%d\n", ASM_STABD_OP, N_SLINE, lineno);
#endif
}