* dbxout.c (dbxout_source_line): Remove extra tab.

From-SVN: r36821
This commit is contained in:
J. David Anglin 2000-10-10 00:13:09 +00:00 committed by Hans-Peter Nilsson
parent c690f089da
commit 0b8833aa1d
2 changed files with 5 additions and 1 deletions

View File

@ -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.

View File

@ -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
}