aboutsummaryrefslogtreecommitdiff
path: root/gcc/gbl-ctors.h
diff options
context:
space:
mode:
authorCharles Hannum <mycroft@gnu.org>1992-03-14 05:03:55 +0000
committerCharles Hannum <mycroft@gnu.org>1992-03-14 05:03:55 +0000
commitc415fa055b3e70f48e25cea506b76c2e4c793bdc (patch)
tree332d20dd96e669b94e316ec66483165b57d65165 /gcc/gbl-ctors.h
parent78c7cb7413f84b9635512e4ca6bba2e19851df15 (diff)
downloadgcc-c415fa055b3e70f48e25cea506b76c2e4c793bdc.zip
gcc-c415fa055b3e70f48e25cea506b76c2e4c793bdc.tar.gz
gcc-c415fa055b3e70f48e25cea506b76c2e4c793bdc.tar.bz2
*** empty log message ***
From-SVN: r468
Diffstat (limited to 'gcc/gbl-ctors.h')
-rw-r--r--gcc/gbl-ctors.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/gbl-ctors.h b/gcc/gbl-ctors.h
index 2a9ea1f..d99f622 100644
--- a/gcc/gbl-ctors.h
+++ b/gcc/gbl-ctors.h
@@ -46,7 +46,7 @@ extern void atexit (void (*) (void));
typedef void (*func_ptr) (void);
/* Declare the set of symbols use as begin and end markers for the lists
- of global object constructors and global object descructors. */
+ of global object constructors and global object destructors. */
extern func_ptr __CTOR_LIST__[];
extern func_ptr __DTOR_LIST__[];
@@ -75,7 +75,6 @@ do { \
func_ptr *p; \
for (p = __CTOR_LIST__ + 1; *p; ) \
(*p++) (); \
- ON_EXIT (__do_global_dtors, 0); \
} while (0)
#endif