From: Michael Meissner Date: Tue, 30 Apr 1996 17:32:54 +0000 (+0000) Subject: Disable __do_global_ctors for now X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e28b8ef8d16c3ec6f3eb48684a755460c9cf9063;p=gcc.git Disable __do_global_ctors for now From-SVN: r11904 --- diff --git a/gcc/config/rs6000/sol-c0.c b/gcc/config/rs6000/sol-c0.c index c42498a8796..1530fa75fc0 100644 --- a/gcc/config/rs6000/sol-c0.c +++ b/gcc/config/rs6000/sol-c0.c @@ -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);