Commit 73808ca6 by Jason Merrill Committed by Jason Merrill

* except.c (build_throw): Set EXPR_LOCATION.

From-SVN: r166008
parent 236fd18c
2010-10-27 Jason Merrill <jason@redhat.com>
* except.c (build_throw): Set EXPR_LOCATION.
* tree.c (build_cplus_new): Handle CONSTRUCTOR.
* semantics.c (finish_compound_stmt): Avoid creating an
......
......@@ -648,7 +648,9 @@ build_throw (tree exp)
{
if (cfun)
current_function_returns_abnormally = 1;
return build_min (THROW_EXPR, void_type_node, exp);
exp = build_min (THROW_EXPR, void_type_node, exp);
SET_EXPR_LOCATION (exp, input_location);
return exp;
}
if (exp == null_node)
......@@ -834,6 +836,7 @@ build_throw (tree exp)
}
exp = build1 (THROW_EXPR, void_type_node, exp);
SET_EXPR_LOCATION (exp, input_location);
return exp;
}
......
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