Commit 8288cc73 by Jason Merrill Committed by Jason Merrill

re PR c++/49260 ([C++0x] lambda-eh2.C fails execution)

	PR c++/49260
	* call.c (build_call_a): Set cp_function_chain->can_throw here.
	(build_cxx_call): Not here.

From-SVN: r175296
parent 3b4c46d7
2011-06-22 Jason Merrill <jason@redhat.com>
PR c++/49260
* call.c (build_call_a): Set cp_function_chain->can_throw here.
(build_cxx_call): Not here.
2011-06-21 Jason Merrill <jason@redhat.com>
PR c++/49172
......
......@@ -352,6 +352,9 @@ build_call_a (tree function, int n, tree *argarray)
nothrow = ((decl && TREE_NOTHROW (decl))
|| TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (function))));
if (!nothrow && cfun && cp_function_chain)
cp_function_chain->can_throw = 1;
if (decl && TREE_THIS_VOLATILE (decl) && cfun && cp_function_chain)
current_function_returns_abnormally = 1;
......@@ -6710,11 +6713,6 @@ build_cxx_call (tree fn, int nargs, tree *argarray)
/* If this call might throw an exception, note that fact. */
fndecl = get_callee_fndecl (fn);
if ((!fndecl || !TREE_NOTHROW (fndecl))
&& at_function_scope_p ()
&& cfun
&& cp_function_chain)
cp_function_chain->can_throw = 1;
/* Check that arguments to builtin functions match the expectations. */
if (fndecl
......
2011-06-22 Jason Merrill <jason@redhat.com>
PR c++/49260
* g++.dg/cpp0x/lambda/lambda-eh2.C: Change options.
2011-06-22 Dmitry Plotnikov <dplotnikov@ispras.ru>
Dmitry Melnik <dm@ispras.ru>
......
// PR c++/47263
// { dg-options -std=c++0x }
// PR c++/49260
// { dg-options "-std=c++0x -fno-asynchronous-unwind-tables -fno-dwarf2-cfi-asm" }
// { dg-do run }
#include <exception>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment