Commit 0fad5914 by Doug Evans

coff.h (BSS_SECTION_ASM_OP): Define.

* m68k/coff.h (BSS_SECTION_ASM_OP): Define.
(ASM_OUTPUT_ALIGNED_BSS): Define.

From-SVN: r11387
parent f4778f92
......@@ -80,6 +80,20 @@ Boston, MA 02111-1307, USA. */
#define ASM_FILE_START(FILE) \
output_file_directive ((FILE), main_input_filename)
/* If defined, a C expression whose value is a string containing the
assembler operation to identify the following data as uninitialized global
data. */
#define BSS_SECTION_ASM_OP ".section\t.bss"
/* A C statement (sans semicolon) to output to the stdio stream
FILE the assembler definition of an uninitialized global label named
NAME whose size is SIZE bytes and alignment is ALIGN bytes.
Try to use asm_output_aligned_bss to implement this macro. */
#define ASM_OUTPUT_ALIGNED_BSS(FILE, NAME, SIZE, ALIGN) \
asm_output_aligned_bss ((FILE), (NAME), (SIZE), (ALIGN))
/* Support the ctors and dtors sections for g++. */
#define CTORS_SECTION_ASM_OP ".section\t.ctors,\"x\""
......
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