elfos.h (const_section): Output a tab before assembler directives.
authorJeffrey A Law <law@cygnus.com>
Wed, 30 Jun 1999 05:58:43 +0000 (05:58 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 30 Jun 1999 05:58:43 +0000 (23:58 -0600)
* elfos.h (const_section): Output a tab before assembler directives.
(ctors_section, dtors_section): Likewise.
(ASM_OUTPUT_SECTION_NAME): Likewise.

From-SVN: r27845

gcc/ChangeLog
gcc/config/elfos.h

index 1cc2f95ecf8d4c30c527de866a533feafe67e0e7..a9304760bda2f01033a34fd0e0f6beb1fb04beca 100644 (file)
@@ -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)
index 6c107311fd75d5d75664c78c9e5968702008d37d..8906fe9cd728714299c487466e4f43e488075dd5 100644 (file)
@@ -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)