forked from OSchip/llvm-project
Remove an unreachable 'break' following a 'return'.
llvm-svn: 179991
This commit is contained in:
parent
9a9141aed5
commit
b5ba3d3b37
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue