[cfe-commits] r94330 - /cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td

Mike Stump mrs at apple.com
Sat Jan 23 12:23:40 PST 2010


Author: mrs
Date: Sat Jan 23 14:23:40 2010
New Revision: 94330

URL: http://llvm.org/viewvc/llvm-project?rev=94330&view=rev
Log:
Temporary flip default for -Wunreachable-code so some bots can test it
out.  They should all be done later tonight, but if something bad
happens, feel free to revert sooner.

Modified:
    cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td

Modified: cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=94330&r1=94329&r2=94330&view=diff

==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Sat Jan 23 14:23:40 2010
@@ -161,7 +161,7 @@
   "block could be attribute 'noreturn'">,
   InGroup<DiagGroup<"missing-noreturn">>, DefaultIgnore;
 def warn_unreachable : Warning<"will never be executed">,
-  InGroup<DiagGroup<"unreachable-code">>, DefaultIgnore;
+  InGroup<DiagGroup<"unreachable-code">>;
 
 /// Built-in functions.
 def ext_implicit_lib_function_decl : ExtWarn<





More information about the cfe-commits mailing list