aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2003-04-30 01:52:06 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2003-04-30 01:52:06 +0000
commit505b0fd661e21182856cfcf73ed6f39c707ac28b (patch)
treeabdaf41f0f38c6295e79aa7477590f9912174dce
parenta6fdc0868e26ea055cd17a14bf976a805b60d6ea (diff)
downloadgcc-505b0fd661e21182856cfcf73ed6f39c707ac28b.zip
gcc-505b0fd661e21182856cfcf73ed6f39c707ac28b.tar.gz
gcc-505b0fd661e21182856cfcf73ed6f39c707ac28b.tar.bz2
host-darwin.c (segv_handler): When -dH is used, call abort() after running out of stack space.
* config/rs6000/host-darwin.c (segv_handler): When -dH is used, call abort() after running out of stack space. From-SVN: r66282
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/config/rs6000/host-darwin.c4
-rw-r--r--gcc/config/rs6000/x-darwin2
3 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3b4d998..a5604c1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,8 @@
2003-04-29 Geoffrey Keating <geoffk@apple.com>
+ * config/rs6000/host-darwin.c (segv_handler): When -dH is used,
+ call abort() after running out of stack space.
+
* c-typeck.c (function_types_compatible_p): Ignore incompatible
'volatile' qualifiers on a function's return type in GNU mode.
diff --git a/gcc/config/rs6000/host-darwin.c b/gcc/config/rs6000/host-darwin.c
index 886f2b4..8b4eed2 100644
--- a/gcc/config/rs6000/host-darwin.c
+++ b/gcc/config/rs6000/host-darwin.c
@@ -26,6 +26,7 @@
#include "hosthooks.h"
#include "hosthooks-def.h"
#include "toplev.h"
+#include "diagnostic.h"
static void segv_crash_handler PARAMS ((int));
static void segv_handler PARAMS ((int, siginfo_t *, void *));
@@ -105,6 +106,9 @@ segv_handler (sig, sip, scp)
}
}
+ if (global_dc->abort_on_error)
+ abort ();
+
exit (FATAL_EXIT_CODE);
}
diff --git a/gcc/config/rs6000/x-darwin b/gcc/config/rs6000/x-darwin
index 6738d45..f7242a7 100644
--- a/gcc/config/rs6000/x-darwin
+++ b/gcc/config/rs6000/x-darwin
@@ -1,4 +1,4 @@
host-darwin.o : $(srcdir)/config/rs6000/host-darwin.c $(CONFIG_H) $(SYSTEM_H) \
- coretypes.h hosthooks.h hosthooks-def.h toplev.h
+ coretypes.h hosthooks.h hosthooks-def.h toplev.h diagnostic.h
$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
$(srcdir)/config/rs6000/host-darwin.c