From: Evan Cheng Date: Wed, 5 Sep 2007 21:36:14 +0000 (+0000) Subject: Missing break. Patch by Wojciech Matyjewicz. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=df344febe27b8fa68424032c4181e494307d6eaf;p=oota-llvm.git Missing break. Patch by Wojciech Matyjewicz. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41727 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/BasicAliasAnalysis.cpp b/lib/Analysis/BasicAliasAnalysis.cpp index c4aa3b53518..82f3c57afd7 100644 --- a/lib/Analysis/BasicAliasAnalysis.cpp +++ b/lib/Analysis/BasicAliasAnalysis.cpp @@ -220,6 +220,7 @@ static bool AddressMightEscape(const Value *V) { case Instruction::GetElementPtr: if (AddressMightEscape(I)) return true; + break; // next use. case Instruction::BitCast: if (!isa(I->getType())) return true;