diff options
author | J. David Anglin <dave@hiauly1.hia.nrc.ca> | 2000-10-10 00:13:09 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-10-10 00:13:09 +0000 |
commit | 0b8833aa1d92fbf290749cdc28254443a0d2a29a (patch) | |
tree | 90b6fe352bef8c70cccf4d95812913fb615a59f7 /gcc/dbxout.c | |
parent | c690f089dacdce4be63b5652bc03f015978e1c45 (diff) | |
download | gcc-0b8833aa1d92fbf290749cdc28254443a0d2a29a.zip gcc-0b8833aa1d92fbf290749cdc28254443a0d2a29a.tar.gz gcc-0b8833aa1d92fbf290749cdc28254443a0d2a29a.tar.bz2 |
* dbxout.c (dbxout_source_line): Remove extra tab.
From-SVN: r36821
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |