]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Sun, 2 Feb 1992 21:57:55 +0000 (21:57 +0000)
committerRichard Stallman <rms@gnu.org>
Sun, 2 Feb 1992 21:57:55 +0000 (21:57 +0000)
From-SVN: r269

gcc/gbl-ctors.h

index 5a37661a27f6804e0594f9174a8d93b794feb5a8..2a9ea1f88e4d5f13c5950f48f75e96619e471cca 100644 (file)
@@ -73,9 +73,9 @@ extern void __do_global_dtors ();
 #define DO_GLOBAL_CTORS_BODY                                           \
 do {                                                                   \
   func_ptr *p;                                                         \
-  ON_EXIT (__do_global_dtors, 0);                                      \
   for (p = __CTOR_LIST__ + 1; *p; )                                    \
     (*p++) ();                                                         \
+  ON_EXIT (__do_global_dtors, 0);                                      \
 } while (0)
 #endif