diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2002-02-14 16:39:23 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2002-02-14 16:39:23 +0000 |
commit | 6c4cf6956ed5f4d8a36ab8e1e1cc9f808b6c087a (patch) | |
tree | 641e3a1ca0dadbe0c4f8d7e36307e72f854fc63b /gcc/config | |
parent | aeb4ed4614466506bbac503700d611303d963a79 (diff) | |
download | gcc-6c4cf6956ed5f4d8a36ab8e1e1cc9f808b6c087a.tar.gz |
* config/s390/linux.h (ASM_OUTPUT_ALIGNED_BSS): New.
From-SVN: r49768
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/s390/linux.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/config/s390/linux.h b/gcc/config/s390/linux.h index cfd4ebf940c..63c635172ac 100644 --- a/gcc/config/s390/linux.h +++ b/gcc/config/s390/linux.h @@ -197,6 +197,13 @@ Boston, MA 02111-1307, USA. */ #define ASM_OUTPUT_SKIP(FILE, SIZE) \ fprintf ((FILE), "\t.set\t.,.+%u\n", (SIZE)) +/* This is 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) \ + asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN) + /* Output before read-only data. */ #define TEXT_SECTION_ASM_OP ".text" |