From: Chris Lattner Date: Sat, 3 Apr 2004 00:43:03 +0000 (+0000) Subject: Add a break in the default case X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e34c0b48a07ea4f03f81cd46986486c8fe065e7e;p=oota-llvm.git Add a break in the default case git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12639 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index b35e2c4542d..e75229c0675 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -1923,6 +1923,7 @@ SCEVHandle ScalarEvolutionsImpl::ComputeIterationCount(const Loop *L) { std::cerr << *LHS << " " << Instruction::getOpcodeName(Cond) << " " << *RHS << "\n"; #endif + break; } return UnknownValue; }