Commit 6c4cf695 by Ulrich Weigand Committed by Ulrich Weigand

* config/s390/linux.h (ASM_OUTPUT_ALIGNED_BSS): New.

From-SVN: r49768
parent aeb4ed46
2002-02-14 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/linux.h (ASM_OUTPUT_ALIGNED_BSS): New.
2002-02-14 Kazu Hirata <kazu@hxi.com> 2002-02-14 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300-protos.h: Update the prototype for * config/h8300/h8300-protos.h: Update the prototype for
......
...@@ -197,6 +197,13 @@ Boston, MA 02111-1307, USA. */ ...@@ -197,6 +197,13 @@ Boston, MA 02111-1307, USA. */
#define ASM_OUTPUT_SKIP(FILE, SIZE) \ #define ASM_OUTPUT_SKIP(FILE, SIZE) \
fprintf ((FILE), "\t.set\t.,.+%u\n", (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. */ /* Output before read-only data. */
#define TEXT_SECTION_ASM_OP ".text" #define TEXT_SECTION_ASM_OP ".text"
......
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