diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-06-30 05:58:43 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-06-29 23:58:43 -0600 |
commit | c7a159aa2fbe2015b7f700952163c2e70216956f (patch) | |
tree | 1e7ac879aa0bc29fc39dbe1ed4f0eb5f6acae1c6 /gcc | |
parent | 57220c8c71e802c2abd0a019074df800a74d7227 (diff) | |
download | gcc-c7a159aa2fbe2015b7f700952163c2e70216956f.zip gcc-c7a159aa2fbe2015b7f700952163c2e70216956f.tar.gz gcc-c7a159aa2fbe2015b7f700952163c2e70216956f.tar.bz2 |
elfos.h (const_section): Output a tab before assembler directives.
* elfos.h (const_section): Output a tab before assembler directives.
(ctors_section, dtors_section): Likewise.
(ASM_OUTPUT_SECTION_NAME): Likewise.
From-SVN: r27845
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/elfos.h | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1cc2f95e..a930476 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ Wed Jun 30 03:31:54 1999 Jeffrey A Law (law@cygnus.com) + * elfos.h (const_section): Output a tab before assembler directives. + (ctors_section, dtors_section): Likewise. + (ASM_OUTPUT_SECTION_NAME): Likewise. + * pa/pa1.h: Delete unused file. Tue Jun 29 01:37:53 1999 Jeffrey A Law (law@cygnus.com) diff --git a/gcc/config/elfos.h b/gcc/config/elfos.h index 6c10731..8906fe9c 100644 --- a/gcc/config/elfos.h +++ b/gcc/config/elfos.h @@ -289,7 +289,7 @@ const_section () \ text_section(); \ else if (in_section != in_const) \ { \ - fprintf (asm_out_file, "%s\n", CONST_SECTION_ASM_OP); \ + fprintf (asm_out_file, "\t%s\n", CONST_SECTION_ASM_OP); \ in_section = in_const; \ } \ } @@ -300,7 +300,7 @@ ctors_section () \ { \ if (in_section != in_ctors) \ { \ - fprintf (asm_out_file, "%s\n", CTORS_SECTION_ASM_OP); \ + fprintf (asm_out_file, "\t%s\n", CTORS_SECTION_ASM_OP); \ in_section = in_ctors; \ } \ } @@ -311,7 +311,7 @@ dtors_section () \ { \ if (in_section != in_dtors) \ { \ - fprintf (asm_out_file, "%s\n", DTORS_SECTION_ASM_OP); \ + fprintf (asm_out_file, "\t%s\n", DTORS_SECTION_ASM_OP); \ in_section = in_dtors; \ } \ } @@ -350,14 +350,14 @@ do { \ s->type = type; \ s->next = sections; \ sections = s; \ - fprintf (FILE, ".section\t%s,\"%s\",@progbits\n", NAME, mode); \ + fprintf (FILE, "\t.section\t%s,\"%s\",@progbits\n", NAME, mode); \ } \ else \ { \ if (DECL && s->type != type) \ error_with_decl (DECL, "%s causes a section type conflict"); \ \ - fprintf (FILE, ".section\t%s\n", NAME); \ + fprintf (FILE, "\t.section\t%s\n", NAME); \ } \ } while (0) |