diff options
Diffstat (limited to 'gcc/config')
-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. */ |