Lines Matching refs:C99
47 // C99 6.8.3p2: The expression in an expression statement is evaluated as a
301 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus) {
352 // C99 6.8.4.2p3: The expression shall be an integer constant.
639 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
770 // We already verified that the expression has a i-c-e value (C99
1528 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
1679 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
2298 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
2309 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
2564 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
2737 // C99 6.8.6.4p1 (ext_ since GCC warns)
2781 // C99 6.8.6.4p1 (ext_ since GCC warns)
2782 if (getLangOpts().C99) DiagID = diag::ext_return_missing_expr;
2797 // C99 6.8.6.4p3(136): The return statement is not an assignment. The