diff options
author | Chris Lattner <sabre@nondot.org> | 2010-06-11 22:10:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-06-11 22:10:09 +0000 |
commit | 6370a1b1f22e407fc71d3975a6c96b0234b5688d (patch) | |
tree | 876003253a93870b8d2deb2fd9aed6de69422d41 | |
parent | 279c1dbebf37cd128f3c73c70741a6b8c35ad025 (diff) |
add a -W flag.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105843 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticSemaKinds.td | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index c272aed7ea..0314e75f87 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -3039,7 +3039,9 @@ def err_constant_integer_arg_type : Error< "argument to %0 must be a constant integer">; def ext_mixed_decls_code : Extension< - "ISO C90 forbids mixing declarations and code">; + "ISO C90 forbids mixing declarations and code">, + InGroup<DiagGroup<"declaration-after-statement">>; + def err_non_variable_decl_in_for : Error< "declaration of non-local variable in 'for' loop">; def err_toomany_element_decls : Error< |