From: Craig Topper Date: Mon, 22 Apr 2013 04:06:59 +0000 (+0000) Subject: Remove an unreachable 'break' following a 'return'. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=007b40ff9fe47a6e97c2d2cebc260cfef604819e;p=oota-llvm.git Remove an unreachable 'break' following a 'return'. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179991 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCParser/AsmParser.cpp b/lib/MC/MCParser/AsmParser.cpp index 8783bc072b1..09893ee1749 100644 --- a/lib/MC/MCParser/AsmParser.cpp +++ b/lib/MC/MCParser/AsmParser.cpp @@ -1984,7 +1984,6 @@ static bool IsUsedIn(const MCSymbol *Sym, const MCExpr *Value) { case MCExpr::Binary: { const MCBinaryExpr *BE = static_cast(Value); return IsUsedIn(Sym, BE->getLHS()) || IsUsedIn(Sym, BE->getRHS()); - break; } case MCExpr::Target: case MCExpr::Constant: