aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorH.J. Lu <hjl@gnu.org>2001-08-11 15:43:20 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2001-08-11 08:43:20 -0700
commitf841565e808d607b5fb19f906cc421e30c1b3f74 (patch)
treeb7d07ce92948f5246513186915c3259273e22400 /gcc
parent760a4879af059eb40d0b9718fe9b5af9ebe51411 (diff)
downloadgcc-f841565e808d607b5fb19f906cc421e30c1b3f74.zip
gcc-f841565e808d607b5fb19f906cc421e30c1b3f74.tar.gz
gcc-f841565e808d607b5fb19f906cc421e30c1b3f74.tar.bz2
linux.h (EXTRA_SECTIONS): Remove in_ctors and in_dtors.
2001-08-11 H.J. Lu <hjl@gnu.org> * config/mips/linux.h (EXTRA_SECTIONS): Remove in_ctors and in_dtors. (EXTRA_SECTION_FUNCTIONS): Remove DTORS_SECTION_ASM_OP and RDATA_SECTION_ASM_OP. From-SVN: r44798
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/mips/linux.h6
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2472ad9..c23a962 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2001-08-11 H.J. Lu <hjl@gnu.org>
+
+ * config/mips/linux.h (EXTRA_SECTIONS): Remove in_ctors and
+ in_dtors.
+ (EXTRA_SECTION_FUNCTIONS): Remove DTORS_SECTION_ASM_OP and
+ RDATA_SECTION_ASM_OP.
+
2001-08-11 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* doc/install.texi (Specific, c4x): Fix cross-reference to the
diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h
index 497e446..79df844 100644
--- a/gcc/config/mips/linux.h
+++ b/gcc/config/mips/linux.h
@@ -97,15 +97,13 @@ do { \
/* A list of other sections which the compiler might be "in" at any
given time. */
#undef EXTRA_SECTIONS
-#define EXTRA_SECTIONS in_sdata, in_sbss, in_rdata, in_ctors, in_dtors
+#define EXTRA_SECTIONS in_sdata, in_sbss, in_rdata
#undef EXTRA_SECTION_FUNCTIONS
#define EXTRA_SECTION_FUNCTIONS \
SECTION_FUNCTION_TEMPLATE(sdata_section, in_sdata, SDATA_SECTION_ASM_OP) \
SECTION_FUNCTION_TEMPLATE(sbss_section, in_sbss, SBSS_SECTION_ASM_OP) \
- SECTION_FUNCTION_TEMPLATE(rdata_section, in_rdata, RDATA_SECTION_ASM_OP) \
- SECTION_FUNCTION_TEMPLATE(ctors_section, in_ctors, CTORS_SECTION_ASM_OP) \
- SECTION_FUNCTION_TEMPLATE(dtors_section, in_dtors, DTORS_SECTION_ASM_OP)
+ SECTION_FUNCTION_TEMPLATE(rdata_section, in_rdata, RDATA_SECTION_ASM_OP)
#define SECTION_FUNCTION_TEMPLATE(FN, ENUM, OP) \
void FN () \