linux.h: Remove undefines which disabled .ctor/.dtor support.
authorAndreas Jaeger <aj@suse.de>
Mon, 8 May 2000 07:18:04 +0000 (09:18 +0200)
committerAndreas Jaeger <aj@gcc.gnu.org>
Mon, 8 May 2000 07:18:04 +0000 (09:18 +0200)
2000-05-08  Andreas Jaeger  <aj@suse.de>

* config/mips/linux.h: Remove undefines which disabled .ctor/.dtor
support.

From-SVN: r33763

gcc/ChangeLog
gcc/config/mips/linux.h

index 79ae8968d5d0d89b4af5199dcb1e99770ab54c01..73853ffc3d0d1843a21aebd893f5c4e224236014 100644 (file)
@@ -1,3 +1,8 @@
+2000-05-08  Andreas Jaeger  <aj@suse.de>
+
+       * config/mips/linux.h: Remove undefines which disabled .ctor/.dtor
+       support.
+
 2000-05-07  Zack Weinberg  <zack@wolery.cumb.org>
 
        * Makefile.in (LOOSE_CFLAGS): Add /g modifiers to both sed
index a598f1691801d63bceeb5550d753cff3c8aa6bac..45e5e446f68efec92a10df658aedc2bf30bec86f 100644 (file)
@@ -169,31 +169,3 @@ Boston, MA 02111-1307, USA.  */
 %{!fno-PIC:%{!fno-pic:-KPIC}} \
 %{fno-PIC:-non_shared} %{fno-pic:-non_shared}"
 
-/* Undefine the following which were defined in elf.h.  This will cause the linux
-   port to continue to use collect2 for constructors/destructors.  These may be removed
-   when .ctor/.dtor section support is desired. */
-
-#undef CTORS_SECTION_ASM_OP
-#undef DTORS_SECTION_ASM_OP
-
-#undef EXTRA_SECTIONS
-#define EXTRA_SECTIONS in_sdata, in_sbss, in_rdata
-
-#undef INVOKE__main
-#undef NAME__MAIN
-#undef SYMBOL__MAIN
-
-#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)
-
-#undef ASM_OUTPUT_CONSTRUCTOR
-#undef ASM_OUTPUT_DESTRUCTOR
-
-#undef CTOR_LIST_BEGIN
-#undef CTOR_LIST_END
-#undef DTOR_LIST_BEGIN
-#undef DTOR_LIST_END
-/*  End of undefines to turn off .ctor/.dtor section support */