diff options
author | Chris Lattner <sabre@nondot.org> | 2004-04-03 00:43:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-04-03 00:43:03 +0000 |
commit | e34c0b48a07ea4f03f81cd46986486c8fe065e7e (patch) | |
tree | eb6cbb025f71879677683f57e8bd22009c2ea262 /lib/Analysis/ScalarEvolution.cpp | |
parent | 8507ecb36d8b755671861d0b3550c66a322d3f04 (diff) |
Add a break in the default case
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12639 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index b35e2c4542..e75229c067 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; } |