Displaying 2 results from an estimated 2 matches for "lang_eh_runtime_typ".
Did you mean:
lang_eh_runtime_type
2007 Dec 08
4
[LLVMdev] Darwin vs exceptions
...tch-all handler when it does
not causes the unwinder to go into a loop. I tried simply removing
the code that does this:
Index: cp/except.c
===================================================================
--- cp/except.c (revision 44663)
+++ cp/except.c (working copy)
@@ -104,7 +104,7 @@
lang_eh_runtime_type = build_eh_type_type;
lang_protect_cleanup_actions = &cp_protect_cleanup_actions;
/* LLVM local */
- lang_eh_catch_all = return_null_tree;
+/* lang_eh_catch_all = return_null_tree;*/
}
/* Returns an expression to be executed if an unhandled exception is
and that works well for...
2007 Dec 08
0
[LLVMdev] Darwin vs exceptions
...'re beyond my knowledge here :)
> I tried simply removing the code that does this:
>
> Index: cp/except.c
> ===================================================================
> --- cp/except.c (revision 44663)
> +++ cp/except.c (working copy)
> @@ -104,7 +104,7 @@
> lang_eh_runtime_type = build_eh_type_type;
> lang_protect_cleanup_actions = &cp_protect_cleanup_actions;
> /* LLVM local */
> - lang_eh_catch_all = return_null_tree;
> +/* lang_eh_catch_all = return_null_tree;*/
> }
>
> /* Returns an expression to be executed if an unhandled exceptio...