diff options
author | Robert Lipe <robertl@cygnus.com> | 1999-11-28 21:44:43 +0000 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 1999-11-28 21:44:43 +0000 |
commit | 9fdbc878c2b648cea316b96b502833693222a035 (patch) | |
tree | e5412b4f7857d55b0c1fa3f37e88e21c06eb5d5d /gcc | |
parent | 140592a0131cb2dc88d3f55b2671977f20c85be2 (diff) | |
download | gcc-9fdbc878c2b648cea316b96b502833693222a035.zip gcc-9fdbc878c2b648cea316b96b502833693222a035.tar.gz gcc-9fdbc878c2b648cea316b96b502833693222a035.tar.bz2 |
sco5.h (FINI_SECTION_ASM_OP_COFF): Move destructor fn table from .fini into .dtor.
* i386/sco5.h (FINI_SECTION_ASM_OP_COFF): Move destructor fn
table from .fini into .dtor.
From-SVN: r30690
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/sco5.h | 2 |
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) |