OSDN Git Service

(ASM_OUTPUT_ALIGNED_BSS): Define.
authormerrill <merrill@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 May 1996 21:18:50 +0000 (21:18 +0000)
committermerrill <merrill@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 May 1996 21:18:50 +0000 (21:18 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11911 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/i386/linux.h
gcc/config/i386/sysv4.h
gcc/config/sparc/sysv4.h

index c0bb0a7..64761d0 100644 (file)
@@ -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)
index 92fcada..a2dc948 100644 (file)
@@ -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)
index 1c69dd5..ad6cd10 100644 (file)
@@ -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)