Remove an unreachable 'break' following a 'return'.

llvm-svn: 179991
This commit is contained in:
Craig Topper 2013-04-22 04:06:59 +00:00
parent 9a9141aed5
commit b5ba3d3b37
1 changed files with 0 additions and 1 deletions

View File

@ -1984,7 +1984,6 @@ static bool IsUsedIn(const MCSymbol *Sym, const MCExpr *Value) {
case MCExpr::Binary: {
const MCBinaryExpr *BE = static_cast<const MCBinaryExpr*>(Value);
return IsUsedIn(Sym, BE->getLHS()) || IsUsedIn(Sym, BE->getRHS());
break;
}
case MCExpr::Target:
case MCExpr::Constant: