Disable __do_global_ctors for now
authorMichael Meissner <meissner@gcc.gnu.org>
Tue, 30 Apr 1996 17:32:54 +0000 (17:32 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Tue, 30 Apr 1996 17:32:54 +0000 (17:32 +0000)
From-SVN: r11904

gcc/config/rs6000/sol-c0.c

index c42498a..1530fa7 100644 (file)
@@ -48,8 +48,10 @@ _start(int argc, char *argv[], char *envp[], void *auxp, void (*termfunc)())
   if (termfunc)
     atexit (termfunc);
 
+#if 0
   /* Call any global constructors and destructors.  */
   __do_global_ctors ();
+#endif
 
   /* Call the main program now */
   ret = main (argc, argv, envp, auxp);