[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / docs / ecma334 / 15.11.xml
1 <?xml version="1.0"?>
2 <clause number="15.11" title="The checked and unchecked statements">
3   <paragraph>The checked and unchecked statements are used to control the overflow checking context for  <non_terminal where="11.1">integral-type</non_terminal> arithmetic operations and conversions. <grammar_production><name><non_terminal where="15.11">checked-statement</non_terminal></name> : <rhs><keyword>checked</keyword><non_terminal where="15.2">block</non_terminal></rhs></grammar_production><grammar_production><name><non_terminal where="15.11">unchecked-statement</non_terminal></name> : <rhs><keyword>unchecked</keyword><non_terminal where="15.2">block</non_terminal></rhs></grammar_production></paragraph>
4   <paragraph>The checked statement causes all expressions in the block to be evaluated in a checked context, and the unchecked statement causes all expressions in the block to be evaluated in an unchecked context. </paragraph>
5   <paragraph>The checked and unchecked statements are precisely equivalent to the checked and unchecked operators (<hyperlink>14.5.12</hyperlink>), except that they operate on blocks instead of expressions. </paragraph>
6 </clause>