Commit 17d6fedc by Jason Merrill

(ASM_OUTPUT_ALIGNED_BSS): Define.

From-SVN: r11911
parent e1aa1a6c
......@@ -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)
......@@ -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)
......@@ -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)
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