Add a break in the default case
authorChris Lattner <sabre@nondot.org>
Sat, 3 Apr 2004 00:43:03 +0000 (00:43 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 3 Apr 2004 00:43:03 +0000 (00:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12639 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ScalarEvolution.cpp

index b35e2c4542d080d939c46145c5904487f2fa406b..e75229c0675fcdc02d65b97974eac919e7dfec7b 100644 (file)
@@ -1923,6 +1923,7 @@ SCEVHandle ScalarEvolutionsImpl::ComputeIterationCount(const Loop *L) {
     std::cerr << *LHS << "   "
               << Instruction::getOpcodeName(Cond) << "   " << *RHS << "\n";
 #endif
+    break;
   }
   return UnknownValue;
 }