parse,y (patch_synchronized_statement): Set CAN_COMPLETE_NORMALLY.

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

From-SVN: r24074
This commit is contained in:
Per Bothner 1998-12-03 07:58:20 -08:00
parent 66af84e403
commit 55593efd85
1 changed files with 3 additions and 1 deletions

View File

@ -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 */