diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 12:08:02 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 12:08:02 +0000 |
commit | 95d655c33f9eea0ab723740e19c86dd8298de2c4 (patch) | |
tree | a907ce9d06ab1d0abe2298067e83c757d13b0b9a /gcc/config/arm/coff.h | |
parent | 394765ffb7b534bad0348165a516fd16e3fc8989 (diff) | |
download | gcc-95d655c33f9eea0ab723740e19c86dd8298de2c4.tar.gz |
Change callers in config/a*/ to match:
Changes add TABs on either or both sides, covering start of line,
up to any operand for all .*ASM.*_OP definitions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36616 138bc75d-0d04-0410-961f-82ee72b054a4
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"); \ } \ |