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
This commit is contained in:
Jeffrey A Law 1999-06-30 05:58:43 +00:00 committed by Jeff Law
parent 57220c8c71
commit c7a159aa2f
2 changed files with 9 additions and 5 deletions

View 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)

View 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)