Remove superfluous break from switch statement. NFCI.

Reported in https://www.viva64.com/en/b/0629/

llvm-svn: 359467
This commit is contained in:
Simon Pilgrim 2019-04-29 16:45:35 +00:00
parent 1f10f6ea51
commit 864cf8e274
1 changed files with 0 additions and 1 deletions

View File

@ -650,7 +650,6 @@ static void printMCExpr(const MCExpr *E, raw_ostream &OS) {
void SystemZOperand::print(raw_ostream &OS) const { void SystemZOperand::print(raw_ostream &OS) const {
switch (Kind) { switch (Kind) {
break;
case KindToken: case KindToken:
OS << "Token:" << getToken(); OS << "Token:" << getToken();
break; break;