diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/arm/elf.h | 9 |
2 files changed, 4 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 611b3ac..4768d57 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-04-28 Nick Clifton <nickc@redhat.com> + + * config/arm/elf.h (ASM_OUTPUT_ALIGNED_COMMON): Remove definition. + 2003-04-27 Zack Weinberg <zack@codesourcery.com> * expr.c (expand_expr <COMPLEX_CST, STRING_CST>): Always call diff --git a/gcc/config/arm/elf.h b/gcc/config/arm/elf.h index c8fd842..89f18f2 100644 --- a/gcc/config/arm/elf.h +++ b/gcc/config/arm/elf.h @@ -132,15 +132,6 @@ #undef TARGET_ASM_NAMED_SECTION #define TARGET_ASM_NAMED_SECTION arm_elf_asm_named_section -#undef ASM_OUTPUT_ALIGNED_COMMON -#define ASM_OUTPUT_ALIGNED_COMMON(STREAM, NAME, SIZE, ALIGN) \ - do \ - { \ - fprintf (STREAM, "\t.comm\t"); \ - assemble_name (STREAM, NAME); \ - fprintf (STREAM, ", %d, %d\n", SIZE, ALIGN); \ - } \ - while (0) /* For PIC code we need to explicitly specify (PLT) and (GOT) relocs. */ #define NEED_PLT_RELOC flag_pic |