diff options
Diffstat (limited to 'gcc/config/arm/coff.h')
-rw-r--r-- | gcc/config/arm/coff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/arm/coff.h b/gcc/config/arm/coff.h index 34971ee7af6..b69ca3e41ec 100644 --- a/gcc/config/arm/coff.h +++ b/gcc/config/arm/coff.h @@ -173,7 +173,7 @@ dtors_section () \ do \ { \ ctors_section (); \ - fprintf (STREAM, "\t%s\t ", INT_ASM_OP); \ + fprintf (STREAM, "%s", INT_ASM_OP); \ assemble_name (STREAM, NAME); \ fprintf (STREAM, "\n"); \ } \ @@ -186,7 +186,7 @@ dtors_section () \ do \ { \ dtors_section (); \ - fprintf (STREAM, "\t%s\t ", INT_ASM_OP); \ + fprintf (STREAM, "%s", INT_ASM_OP); \ assemble_name (STREAM, NAME); \ fprintf (STREAM, "\n"); \ } \ |