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:
parent
66af84e403
commit
55593efd85
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user