Commit c7a159aa by Jeffrey A Law Committed by Jeff Law

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
parent 57220c8c
Wed Jun 30 03:31:54 1999 Jeffrey A Law (law@cygnus.com) 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. * pa/pa1.h: Delete unused file.
Tue Jun 29 01:37:53 1999 Jeffrey A Law (law@cygnus.com) Tue Jun 29 01:37:53 1999 Jeffrey A Law (law@cygnus.com)
......
...@@ -289,7 +289,7 @@ const_section () \ ...@@ -289,7 +289,7 @@ const_section () \
text_section(); \ text_section(); \
else if (in_section != in_const) \ 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; \ in_section = in_const; \
} \ } \
} }
...@@ -300,7 +300,7 @@ ctors_section () \ ...@@ -300,7 +300,7 @@ ctors_section () \
{ \ { \
if (in_section != in_ctors) \ 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; \ in_section = in_ctors; \
} \ } \
} }
...@@ -311,7 +311,7 @@ dtors_section () \ ...@@ -311,7 +311,7 @@ dtors_section () \
{ \ { \
if (in_section != in_dtors) \ 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; \ in_section = in_dtors; \
} \ } \
} }
...@@ -350,14 +350,14 @@ do { \ ...@@ -350,14 +350,14 @@ do { \
s->type = type; \ s->type = type; \
s->next = sections; \ s->next = sections; \
sections = s; \ sections = s; \
fprintf (FILE, ".section\t%s,\"%s\",@progbits\n", NAME, mode); \ fprintf (FILE, "\t.section\t%s,\"%s\",@progbits\n", NAME, mode); \
} \ } \
else \ else \
{ \ { \
if (DECL && s->type != type) \ if (DECL && s->type != type) \
error_with_decl (DECL, "%s causes a section type conflict"); \ 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) } while (0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment