]> granicus.if.org Git - clang/commitdiff
accept -Wcomments as an alias for -Wcomment, PR5855
authorChris Lattner <sabre@nondot.org>
Tue, 22 Dec 2009 22:29:12 +0000 (22:29 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 22 Dec 2009 22:29:12 +0000 (22:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91929 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticGroups.td

index 761478abd3d4ad672d895953988c114d243b4e91..03aad8606352baa4761e4a49b2cc1cbdd7e251ab 100644 (file)
@@ -171,8 +171,9 @@ def Most : DiagGroup<"most", [
 def : DiagGroup<"all", [Most, Parentheses]>;
 
 // Aliases.
-def : DiagGroup<"", [Extra]>;  // -W = -Wextra
-def : DiagGroup<"endif-labels", [ExtraTokens]>; // endif-labels = endif-tokens
+def : DiagGroup<"", [Extra]>;                   // -W = -Wextra
+def : DiagGroup<"endif-labels", [ExtraTokens]>; // -Wendif-labels=-Wendif-tokens
+def : DiagGroup<"comments", [Comment]>;         // -Wcomments = -Wcomment
 
 // A warning group for warnings that we want to have on by default in clang,
 // but which aren't on by default in GCC.