Commit 55593efd by Per Bothner

parse,y (patch_synchronized_statement): Set CAN_COMPLETE_NORMALLY.

8
	* parse,y (patch_synchronized_statement):  Set CAN_COMPLETE_NORMALLY.

From-SVN: r24074
parent 66af84e4
......@@ -10547,7 +10547,9 @@ patch_synchronized_statement (node, wfl_op1)
catch_all = build1 (CATCH_EXPR, void_type_node, catch_all);
/* TRY-CATCH statement */
return build (TRY_EXPR, void_type_node, try_block, catch_all, NULL_TREE);
compound = build (TRY_EXPR, void_type_node, try_block, catch_all, NULL_TREE);
CAN_COMPLETE_NORMALLY (compound) = CAN_COMPLETE_NORMALLY (block);
return compound;
}
/* 14.16 The throw Statement */
......
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