Home | History | Annotate | Download | only in Sema

Lines Matching refs:C99

47   // C99 6.8.3p2: The expression in an expression statement is evaluated as a
313 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus) {
362 // C99 6.8.4.2p3: The expression shall be an integer constant.
648 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
803 // We already verified that the expression has a i-c-e value (C99
1592 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
1743 // C99 6.8.5p3: The declaration part of a 'for' statement shall only
2402 // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
2413 // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
2684 // C99 6.8.6.4p3(136): The return statement is not an assignment. The
2906 // C99 6.8.6.4p1 (ext_ since GCC warns)
2962 // C99 6.8.6.4p1 (ext_ since GCC warns)
2963 if (getLangOpts().C99) DiagID = diag::ext_return_missing_expr;
2976 // C99 6.8.6.4p3(136): The return statement is not an assignment. The