diff options
author | Jason Merrill <merrill@gnu.org> | 1996-05-01 21:18:50 +0000 |
---|---|---|
committer | Jason Merrill <merrill@gnu.org> | 1996-05-01 21:18:50 +0000 |
commit | 17d6fedc573f97792a04b363e59a030584de2459 (patch) | |
tree | 62fcad9c0671532786a1696fc9b53d8f0870ab27 | |
parent | e1aa1a6c6e6d3f2771b9e0c369809265dd131fad (diff) | |
download | gcc-17d6fedc573f97792a04b363e59a030584de2459.zip gcc-17d6fedc573f97792a04b363e59a030584de2459.tar.gz gcc-17d6fedc573f97792a04b363e59a030584de2459.tar.bz2 |
(ASM_OUTPUT_ALIGNED_BSS): Define.
From-SVN: r11911
-rw-r--r-- | gcc/config/i386/linux.h | 8 | ||||
-rw-r--r-- | gcc/config/i386/sysv4.h | 8 | ||||
-rw-r--r-- | gcc/config/sparc/sysv4.h | 7 |
3 files changed, 23 insertions, 0 deletions
diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h index c0bb0a7..64761d0 100644 --- a/gcc/config/i386/linux.h +++ b/gcc/config/i386/linux.h @@ -194,3 +194,11 @@ Boston, MA 02111-1307, USA. */ /* Get perform_* macros to build libgcc.a. */ #include "i386/perform.h" + +/* 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) diff --git a/gcc/config/i386/sysv4.h b/gcc/config/i386/sysv4.h index 92fcada..a2dc948 100644 --- a/gcc/config/i386/sysv4.h +++ b/gcc/config/i386/sysv4.h @@ -243,3 +243,11 @@ do { long value[3]; \ necessary when compiling PIC code. */ #define JUMP_TABLES_IN_TEXT_SECTION + +/* 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) diff --git a/gcc/config/sparc/sysv4.h b/gcc/config/sparc/sysv4.h index 1c69dd5..ad6cd10 100644 --- a/gcc/config/sparc/sysv4.h +++ b/gcc/config/sparc/sysv4.h @@ -261,3 +261,10 @@ do { long value[4]; \ 4 * blockn, 4 * blockn, 4 * blockn); \ } +/* 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) |