aboutsummaryrefslogtreecommitdiff
path: root/gcc/targhooks.c
diff options
context:
space:
mode:
authorNathan Froyd <froydnj@codesourcery.com>2010-11-24 23:37:33 +0000
committerNathan Froyd <froydnj@codesourcery.com>2010-11-24 23:37:33 +0000
commitfc2e3552b5198b22970a6a75d5754076c05b2b6f (patch)
treeb2349d4d5104f6147f26cf5386aefd4ba0d08ff6 /gcc/targhooks.c
parent26d623375615d1d056f4eef58c783f8d4af5f258 (diff)
* targhooks.c (default_except_unwind_info): Remove
MUST_USE_SJLJ_EXCEPTIONS case. * config/h8300/h8300.h (MUST_USE_SJLJ_EXCEPTIONS): Delete. * config/h8300/h8300.c (TARGET_EXCEPT_UNWIND_INFO): Define. * doc/tm.texi.in (MUST_USE_SJLJ_EXCEPTIONS): Delete. * doc/tm.texi: Regenerate. * system.h (MUST_USE_SJLJ_EXCEPTIONS): Poison. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@167131 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/targhooks.c')
-rw-r--r--gcc/targhooks.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c
index 35cd5927b75..f55fa8519d8 100644
--- a/gcc/targhooks.c
+++ b/gcc/targhooks.c
@@ -1311,12 +1311,6 @@ default_debug_unwind_info (void)
enum unwind_info_type
default_except_unwind_info (void)
{
- /* ??? Change the one user to the hook, then poison this. */
-#ifdef MUST_USE_SJLJ_EXCEPTIONS
- if (MUST_USE_SJLJ_EXCEPTIONS)
- return UI_SJLJ;
-#endif
-
/* Obey the configure switch to turn on sjlj exceptions. */
#ifdef CONFIG_SJLJ_EXCEPTIONS
if (CONFIG_SJLJ_EXCEPTIONS)