aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2010-01-23 20:23:40 +0000
committerMike Stump <mrs@apple.com>2010-01-23 20:23:40 +0000
commitb9ea98e6e59a1020361dbb2e2ef3836f6f379cbb (patch)
treedf4b1582a89e1dd9ec17c9aad913e1971d1b08b1
parent2bbae5de98f486d03e10c039668182075b5569dd (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94330 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/DiagnosticSemaKinds.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td
index cab86ba7d9..c93369ace4 100644
--- a/include/clang/Basic/DiagnosticSemaKinds.td
+++ b/include/clang/Basic/DiagnosticSemaKinds.td
@@ -161,7 +161,7 @@ def warn_suggest_noreturn_block : Warning<
"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<