From 0fad591499a6ee586ca3317103516de17f8bd7c3 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Thu, 29 Feb 1996 22:18:17 +0000 Subject: [PATCH] coff.h (BSS_SECTION_ASM_OP): Define. * m68k/coff.h (BSS_SECTION_ASM_OP): Define. (ASM_OUTPUT_ALIGNED_BSS): Define. From-SVN: r11387 --- gcc/config/m68k/coff.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gcc/config/m68k/coff.h b/gcc/config/m68k/coff.h index 89a59f21aa2..f31587dd103 100644 --- a/gcc/config/m68k/coff.h +++ b/gcc/config/m68k/coff.h @@ -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\"" -- 2.30.2