From: Jason Merrill Date: Tue, 11 Nov 1997 10:59:14 +0000 (+0000) Subject: except.c (do_pop_exception): Return a value. X-Git-Tag: releases/egcs-1.0.0~142 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67328e449d258702d9162655f50ff720dacc0692;p=thirdparty%2Fgcc.git except.c (do_pop_exception): Return a value. * except.c (do_pop_exception): Return a value. Oops. From-SVN: r16430 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index d138ed2dbfbd..ae36caa432e1 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +Tue Nov 11 02:53:44 1997 Jason Merrill + + * except.c (do_pop_exception): Return a value. + Mon Nov 10 03:04:20 1997 Jason Merrill Complete nested exception support. diff --git a/gcc/cp/except.c b/gcc/cp/except.c index e4cff1f823b9..66d208c08ce1 100644 --- a/gcc/cp/except.c +++ b/gcc/cp/except.c @@ -500,6 +500,7 @@ do_pop_exception (handler) cleanup = build_function_call (fn, expr_tree_cons (NULL_TREE, cleanup, expr_tree_cons (NULL_TREE, handler, NULL_TREE))); + return cleanup; } /* This routine creates the cleanup for the current exception. */