diff options
author | Doug Evans <dje@gnu.org> | 1996-02-29 22:17:33 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-02-29 22:17:33 +0000 |
commit | f4778f92dad34d5e58bc892416f950b4115205de (patch) | |
tree | bce6191299a45894eaf32583fc34b5d47c44d89a /gcc/config/h8300 | |
parent | 2491d2395347515f342a64e91a15f00826dfcb31 (diff) | |
download | gcc-f4778f92dad34d5e58bc892416f950b4115205de.zip gcc-f4778f92dad34d5e58bc892416f950b4115205de.tar.gz gcc-f4778f92dad34d5e58bc892416f950b4115205de.tar.bz2 |
(ASM_OUTPUT_BSS): Define.
From-SVN: r11386
Diffstat (limited to 'gcc/config/h8300')
-rw-r--r-- | gcc/config/h8300/h8300.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index a43b41bd..4af97f2 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -1225,6 +1225,13 @@ do { char dstr[30]; \ assemble_name ((FILE), (NAME)), \ fprintf ((FILE), ",%d\n", (SIZE))) +/* This says how to output the assembler to define a global + uninitialized but not common symbol. + Try to use asm_output_bss to implement this macro. */ + +#define ASM_OUTPUT_BSS(FILE, NAME, SIZE, ROUNDED) \ + asm_output_bss ((FILE), (NAME), (SIZE), (ROUNDED)) + /* This says how to output an assembler line to define a local common symbol. */ |