For default branches in switch statements with no default label, print out
the line we are going to.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50113 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/BugReporter.cpp b/lib/Analysis/BugReporter.cpp
index be1c52d..68b6ad7 100644
--- a/lib/Analysis/BugReporter.cpp
+++ b/lib/Analysis/BugReporter.cpp
@@ -232,9 +232,7 @@
           
           switch (S->getStmtClass()) {
             default:
-              continue;
-              
-            case Stmt::DefaultStmtClass: {
+            case Stmt::DefaultStmtClass: {              
               
               os << "Control jumps to the 'default' case at line "
                  << SMgr.getLogicalLineNumber(S->getLocStart()) << ".\n";