* config/alpha/elf.h (ASM_OUTPUT_ALIGNED_BSS): New.

From-SVN: r49611
This commit is contained in:
Richard Henderson 2002-02-08 00:12:29 -08:00 committed by Richard Henderson
parent 565472991e
commit 3660d2171c
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-02-08 Richard Henderson <rth@redhat.com>
* config/alpha/elf.h (ASM_OUTPUT_ALIGNED_BSS): New.
2002-02-08 Andreas Jaeger <aj@suse.de>
* config.gcc (x86_64-*-linux): Add t-linux64 makefile fragment.

View File

@ -168,6 +168,16 @@ do { \
ASM_OUTPUT_SKIP((FILE), (SIZE)); \
} while (0)
/* This says how to output assembler code to declare an
uninitialized external linkage data object. */
#undef ASM_OUTPUT_ALIGNED_BSS
#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
do { \
ASM_GLOBALIZE_LABEL (FILE, NAME); \
ASM_OUTPUT_ALIGNED_LOCAL (FILE, NAME, SIZE, ALIGN); \
} while (0)
/* Biggest alignment supported by the object file format of this
machine. Use this macro to limit the alignment which can be
specified using the `__attribute__ ((aligned (N)))' construct. If