diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 11:23:45 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 11:23:45 +0000 |
commit | 17d8e118179b1833778a96146995aece8cb732da (patch) | |
tree | e8692e447e6f1a14d211a84c67278c81413918a4 /gcc/varasm.c | |
parent | becda1de24667c790a5e6137a10bbc656265952a (diff) | |
download | gcc-17d8e118179b1833778a96146995aece8cb732da.tar.gz |
Callers gcc-toplev:
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@36614 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index fe5532b2e01..1fdce5f9df6 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -922,7 +922,7 @@ assemble_destructor (name) { /* Now tell GNU LD that this is part of the static destructor set. */ /* This code works for any machine provided you use GNU as/ld. */ - fprintf (asm_out_file, "%s \"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP); + fprintf (asm_out_file, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP); assemble_name (asm_out_file, name); fputc ('\n', asm_out_file); } @@ -942,7 +942,7 @@ assemble_constructor (name) { /* Now tell GNU LD that this is part of the static constructor set. */ /* This code works for any machine provided you use GNU as/ld. */ - fprintf (asm_out_file, "%s \"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP); + fprintf (asm_out_file, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP); assemble_name (asm_out_file, name); fputc ('\n', asm_out_file); } @@ -962,7 +962,7 @@ assemble_gc_entry (name) if (flag_gnu_linker) { /* Now tell GNU LD that this is part of the static constructor set. */ - fprintf (asm_out_file, "%s \"___PTR_LIST__\",22,0,0,", ASM_STABS_OP); + fprintf (asm_out_file, "%s\"___PTR_LIST__\",22,0,0,", ASM_STABS_OP); assemble_name (asm_out_file, name); fputc ('\n', asm_out_file); } @@ -1127,7 +1127,7 @@ assemble_zeros (size) { #ifdef ASM_BYTE_OP fprintf (asm_out_file, - "%s 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n", ASM_BYTE_OP); + "%s0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n", ASM_BYTE_OP); #else fprintf (asm_out_file, "\tbyte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n"); @@ -1136,7 +1136,7 @@ assemble_zeros (size) if (i < size) { #ifdef ASM_BYTE_OP - fprintf (asm_out_file, "%s 0", ASM_BYTE_OP); + fprintf (asm_out_file, "%s0", ASM_BYTE_OP); #else fprintf (asm_out_file, "\tbyte 0"); #endif |