Fix irix5 native build failure resulting from my previous patch.
* config/mips/elf.h (UNIQUE_SECTION_P): Undef. * config/mips/elf64.h (UNIQUE_SECTION_P): Undef. * config/mips/mips.h (UNIQUE_SECTION_P): Define to 0. From-SVN: r26875
This commit is contained in:
parent
4592123b2a
commit
45e7144ad3
@ -1,3 +1,9 @@
|
||||
Mon May 10 20:34:10 1999 Jim Wilson <wilson@cygnus.com>
|
||||
|
||||
* config/mips/elf.h (UNIQUE_SECTION_P): Undef.
|
||||
* config/mips/elf64.h (UNIQUE_SECTION_P): Undef.
|
||||
* config/mips/mips.h (UNIQUE_SECTION_P): Define to 0.
|
||||
|
||||
1999-05-10 18:21 -0400 Zack Weinberg <zack@rabi.columbia.edu>
|
||||
|
||||
* cppfiles.c (initialize_input_buffer): New function.
|
||||
|
@ -170,6 +170,7 @@ do { \
|
||||
} while (0)
|
||||
|
||||
#define MAKE_DECL_ONE_ONLY(DECL) (DECL_WEAK (DECL) = 1)
|
||||
#undef UNIQUE_SECTION_P
|
||||
#define UNIQUE_SECTION_P(DECL) (DECL_ONE_ONLY (DECL))
|
||||
#define UNIQUE_SECTION(DECL,RELOC) \
|
||||
do { \
|
||||
|
@ -196,6 +196,7 @@ do { \
|
||||
} while (0)
|
||||
|
||||
#define MAKE_DECL_ONE_ONLY(DECL) (DECL_WEAK (DECL) = 1)
|
||||
#undef UNIQUE_SECTION_P
|
||||
#define UNIQUE_SECTION_P(DECL) (DECL_ONE_ONLY (DECL))
|
||||
#define UNIQUE_SECTION(DECL,RELOC) \
|
||||
do { \
|
||||
|
@ -3162,6 +3162,10 @@ typedef struct mips_args {
|
||||
If you are changing this macro, you should look at
|
||||
mips_select_section and see if it needs a similar change. */
|
||||
|
||||
#ifndef UNIQUE_SECTION_P
|
||||
#define UNIQUE_SECTION_P(DECL) (0)
|
||||
#endif
|
||||
|
||||
#define ENCODE_SECTION_INFO(DECL) \
|
||||
do \
|
||||
{ \
|
||||
|
Loading…
Reference in New Issue
Block a user