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)
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; \
} \
}
{ \
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; \
} \
}
{ \
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; \
} \
}
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)