aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/except.c
diff options
context:
space:
mode:
authorno-author <no-author@gcc.gnu.org>2005-07-07 18:03:23 +0000
committerno-author <no-author@gcc.gnu.org>2005-07-07 18:03:23 +0000
commitaef20aaf8817d9630dc2ba85257219a6a50c3b17 (patch)
tree1fb63e61ae091da56a1d015fada83932555140a6 /gcc/cp/except.c
parent5b5fcc5945558d32c619dd3047ae0ee16a6edd2f (diff)
This commit was manufactured by cvs2svn to create tagapple/gcc-5210
'apple-gcc-5210'. git-svn-id: https://gcc.gnu.org/svn/gcc/tags/apple-gcc-5210@101722 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/except.c')
-rw-r--r--gcc/cp/except.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/except.c b/gcc/cp/except.c
index 4a0ccb913b9..cd815ce4bf2 100644
--- a/gcc/cp/except.c
+++ b/gcc/cp/except.c
@@ -153,6 +153,9 @@ build_exc_ptr (void)
return build0 (EXC_PTR_EXPR, ptr_type_node);
}
+/* APPLE LOCAL 4093536 */
+/* Remove do_get_exception_ptr() function. */
+
/* Build up a call to __cxa_begin_catch, to tell the runtime that the
exception has been handled. */
@@ -378,6 +381,8 @@ initialize_handler_parm (tree decl, tree exp)
/* Call this to start a catch block. DECL is the catch parameter. */
+/* APPLE LOCAL begin 4093536 */
+/* Undo PR 10606 */
tree
expand_start_catch_block (tree decl)
{
@@ -439,7 +444,7 @@ expand_start_catch_block (tree decl)
return type;
}
-
+/* APPLE LOCAL end 4093536 */
/* Call this to end a catch block. Its responsible for emitting the
code to handle jumping back to the correct place, and for emitting