diff options
author | Doug Evans <dje@gnu.org> | 1996-02-29 22:18:17 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-02-29 22:18:17 +0000 |
commit | 0fad591499a6ee586ca3317103516de17f8bd7c3 (patch) | |
tree | cf24dee5183471080ee5b6687aab9d47718a481b /gcc | |
parent | f4778f92dad34d5e58bc892416f950b4115205de (diff) | |
download | gcc-0fad591499a6ee586ca3317103516de17f8bd7c3.zip gcc-0fad591499a6ee586ca3317103516de17f8bd7c3.tar.gz gcc-0fad591499a6ee586ca3317103516de17f8bd7c3.tar.bz2 |
coff.h (BSS_SECTION_ASM_OP): Define.
* m68k/coff.h (BSS_SECTION_ASM_OP): Define.
(ASM_OUTPUT_ALIGNED_BSS): Define.
From-SVN: r11387
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/coff.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/config/m68k/coff.h b/gcc/config/m68k/coff.h index 89a59f2..f31587d 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\"" |