diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-15 18:36:38 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-15 18:36:38 -0500 |
commit | c9e39f3d12acbe04b1aefb7cd9e50f7401d714ea (patch) | |
tree | 8dd3e03b26469ed3b03c5a7137aa7f2695fd3312 /gcc | |
parent | 4e911f0bbf8fcc24934830b2de6bc1a4b7dce0e7 (diff) | |
download | gcc-c9e39f3d12acbe04b1aefb7cd9e50f7401d714ea.zip gcc-c9e39f3d12acbe04b1aefb7cd9e50f7401d714ea.tar.gz gcc-c9e39f3d12acbe04b1aefb7cd9e50f7401d714ea.tar.bz2 |
(DO_GLOBAL_DTORS_BODY): Delete; obsolete.
From-SVN: r10738
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/svr3dbx.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/config/i386/svr3dbx.h b/gcc/config/i386/svr3dbx.h index d3348d5..c394747 100644 --- a/gcc/config/i386/svr3dbx.h +++ b/gcc/config/i386/svr3dbx.h @@ -66,17 +66,6 @@ Boston, MA 02111-1307, USA. */ */ #define CTOR_LISTS_DEFINED_EXTERNALLY -/* similar to default, but allows for the table defined by ld with svr3.ifile. - nptrs is always 0. So we need to instead check that __DTOR_LIST__[1] != 0. - The old check is left in so that the same macro can be used if and when - a future version of gas does support section directives. */ - -#define DO_GLOBAL_DTORS_BODY {int nptrs = *(int *)__DTOR_LIST__; int i; \ - if (nptrs == -1 || (__DTOR_LIST__[0] == 0 && __DTOR_LIST__[1] != 0)) \ - for (nptrs = 0; __DTOR_LIST__[nptrs + 1] != 0; nptrs++); \ - for (i = nptrs; i >= 1; i--) \ - __DTOR_LIST__[i] (); } - /* Use crt1.o as a startup file and crtn.o as a closing file. */ /* * The loader directive file svr3.ifile defines how to merge the constructor |