aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/i386/sco5.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 109c834..8022c11 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+1999-11-28 Robert Lipe <robertl@cygnus.com>
+
+ * i386/sco5.h (FINI_SECTION_ASM_OP_COFF): Move destructor fn
+ table from .fini into .dtor.
+
1999-11-28 Anthony Green <green@cygnus.com>
* tree.h (struct tree_decl): Add malloc_flag.
diff --git a/gcc/config/i386/sco5.h b/gcc/config/i386/sco5.h
index 0790e38..b078739 100644
--- a/gcc/config/i386/sco5.h
+++ b/gcc/config/i386/sco5.h
@@ -119,7 +119,7 @@ Boston, MA 02111-1307, USA. */
#undef FINI_SECTION_ASM_OP
#define FINI_SECTION_ASM_OP_ELF "\t.section\t.fini"
-#define FINI_SECTION_ASM_OP_COFF "\t.section\t.fini, \"x\""
+#define FINI_SECTION_ASM_OP_COFF "\t.section\t.dtor, \"x\""
#define FINI_SECTION_ASM_OP \
((TARGET_ELF) ? FINI_SECTION_ASM_OP_ELF : FINI_SECTION_ASM_OP_COFF)