diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7b24d272b40..114ffd81e48 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-06-17 Rainer Orth + + * config/mips/mips.c (TARGET_ASM_UNALIGNED_DI_OP) [TARGET_IRIX5 && + !TARGET_IRIX6]: Define as NULL. + 2003-06-17 Eric Botcazou * config/sparc/sparc.c (sparc_va_arg): Don't align 16-byte+ structures. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index c55d4480338..78e2eee2d01 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -837,8 +837,10 @@ const struct mips_cpu_info mips_cpu_info_table[] = { #define TARGET_ASM_UNALIGNED_HI_OP "\t.align 0\n\t.half\t" #undef TARGET_ASM_UNALIGNED_SI_OP #define TARGET_ASM_UNALIGNED_SI_OP "\t.align 0\n\t.word\t" +/* The IRIX 6 O32 assembler gives an error for `align 0; .dword', contrary + to the documentation, so disable it. */ #undef TARGET_ASM_UNALIGNED_DI_OP -#define TARGET_ASM_UNALIGNED_DI_OP "\t.align 0\n\t.dword\t" +#define TARGET_ASM_UNALIGNED_DI_OP NULL #endif #undef TARGET_ASM_FUNCTION_PROLOGUE