From e34c0b48a07ea4f03f81cd46986486c8fe065e7e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 3 Apr 2004 00:43:03 +0000 Subject: [PATCH] Add a break in the default case git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12639 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/ScalarEvolution.cpp | 1 + 1 file changed, 1 insertion(+) 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; }