]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
*** empty log message ***
authorCharles Hannum <mycroft@gnu.org>
Sat, 14 Mar 1992 05:03:55 +0000 (05:03 +0000)
committerCharles Hannum <mycroft@gnu.org>
Sat, 14 Mar 1992 05:03:55 +0000 (05:03 +0000)
From-SVN: r468

gcc/gbl-ctors.h

index 2a9ea1f88e4d5f13c5950f48f75e96619e471cca..d99f6222f80293308d7f62572ccedf2835954b5e 100644 (file)
@@ -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