]> granicus.if.org Git - clang/commitdiff
Silence unintended fallthrough diagnostic on a case label preceded with a normal...
authorAlexander Kornienko <alexfh@google.com>
Fri, 25 Jan 2013 20:44:56 +0000 (20:44 +0000)
committerAlexander Kornienko <alexfh@google.com>
Fri, 25 Jan 2013 20:44:56 +0000 (20:44 +0000)
Summary:
It's unlikely that a fallthrough is unintended in the following code:
switch (n) {
...
  label:
  case 1:
...
    goto label;
...
}

Reviewers: rsmith, doug.gregor

Reviewed By: doug.gregor

CC: cfe-commits
Differential Revision: http://llvm-reviews.chandlerc.com/D329

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173486 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/AnalysisBasedWarnings.cpp
test/SemaCXX/switch-implicit-fallthrough.cpp

index 78864ec2852e326162e88c2a77f857aa8b2866ea..1687f69f47a67f6eff4df3d1103d367e48c966a3 100644 (file)
@@ -722,6 +722,10 @@ namespace {
         if (SW && SW->getSubStmt() == B.getLabel() && P->begin() == P->end())
           continue; // Previous case label has no statements, good.
 
+        const LabelStmt *L = dyn_cast_or_null<LabelStmt>(P->getLabel());
+        if (L && L->getSubStmt() == B.getLabel() && P->begin() == P->end())
+          continue; // Case label is preceded with a normal label, good.
+
         if (P->pred_begin() == P->pred_end()) {  // The block is unreachable.
           // This only catches trivially unreachable blocks.
           for (CFGBlock::const_iterator ElIt = P->begin(), ElEnd = P->end();
index 75dda8a9617969e5de64fc2ad86ec6c8eb4db9fe..93e724e86c6b38cdd80ddb2f8c8d1ef87574171c 100644 (file)
@@ -38,6 +38,18 @@ int fallthrough(int n) {
     case 68:
       break;
   }
+  switch (n / 15) {
+label_case_70:
+    case 70:
+      n += 333;
+      break;
+    case 71:
+      n += 334;
+      goto label_case_70;
+    case 72:
+      n += 335;
+      break;
+  }
   switch (n / 20) {
     case 7:
       n += 400;