tree-eh.c (lower_try_finally_switch): Really put the location of the last statement of the finally block onto the switch.

* tree-eh.c (lower_try_finally_switch): Really put the location of the
	last statement of the finally block onto the switch.

From-SVN: r189087
This commit is contained in:
Eric Botcazou 2012-06-29 22:39:45 +00:00 committed by Eric Botcazou
parent 942459f26e
commit ca85bcce3e
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2012-06-29 Eric Botcazou <ebotcazou@adacore.com>
* tree-eh.c (lower_try_finally_switch): Really put the location of the
last statement of the finally block onto the switch.
2012-06-29 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
* configure: Regenerate.

View File

@ -1325,9 +1325,8 @@ lower_try_finally_switch (struct leh_state *state, struct leh_tf_state *tf)
/* The location of the finally is either the last stmt in the finally
block or the location of the TRY_FINALLY itself. */
finally_loc = gimple_seq_last_stmt (tf->top_p_seq) != NULL ?
gimple_location (gimple_seq_last_stmt (tf->top_p_seq))
: tf_loc;
x = gimple_seq_last_stmt (finally);
finally_loc = x ? gimple_location (x) : tf_loc;
/* Lower the finally block itself. */
lower_eh_constructs_1 (state, finally);