aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meissner <meissner@gcc.gnu.org>1996-04-30 17:32:54 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1996-04-30 17:32:54 +0000
commite28b8ef8d16c3ec6f3eb48684a755460c9cf9063 (patch)
tree3bd9a0bab1e7e6cfdfdb4becec61e281ca3966ad
parent32806d5e19bba90efc7a6835ea44aab5a78daf5d (diff)
downloadgcc-e28b8ef8d16c3ec6f3eb48684a755460c9cf9063.zip
gcc-e28b8ef8d16c3ec6f3eb48684a755460c9cf9063.tar.gz
gcc-e28b8ef8d16c3ec6f3eb48684a755460c9cf9063.tar.bz2
Disable __do_global_ctors for now
From-SVN: r11904
-rw-r--r--gcc/config/rs6000/sol-c0.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/rs6000/sol-c0.c b/gcc/config/rs6000/sol-c0.c
index c42498a..1530fa7 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);