From 50efa73711cfb4e3c9fd0b52dab7bea769915d31 Mon Sep 17 00:00:00 2001 From: Jason Thorpe Date: Thu, 30 May 2002 01:49:57 +0000 Subject: [PATCH] mips.h (READONLY_DATA_SECTION_ASM_OP): Define only if not already defined. * config/mips/mips.h (READONLY_DATA_SECTION_ASM_OP): Define only if not already defined. From-SVN: r54038 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 19bcad2d1e37..14fba7c31631 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-05-29 Jason Thorpe + + * config/mips/mips.h (READONLY_DATA_SECTION_ASM_OP): Define + only if not already defined. + 2002-05-29 Kazu Hirata * config/h8300/h8300-protos.h: Remove prototypes for diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 0e65a98ba049..2a740684af22 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -4500,7 +4500,9 @@ do { \ #define TEXT_SECTION_ASM_OP "\t.text" /* instructions */ #define DATA_SECTION_ASM_OP "\t.data" /* large data */ #define SDATA_SECTION_ASM_OP "\t.sdata" /* small data */ +#ifndef READONLY_DATA_SECTION_ASM_OP #define READONLY_DATA_SECTION_ASM_OP "\t.rdata" /* read-only data */ +#endif #define SMALL_DATA_SECTION sdata_section /* What other sections we support other than the normal .data/.text. */ -- 2.43.5