From: Simon Pilgrim Date: Mon, 29 Apr 2019 16:45:35 +0000 (+0000) Subject: Remove superfluous break from switch statement. NFCI. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0937a0dc7740805c1972cb44743e56b08f0e6634;p=llvm Remove superfluous break from switch statement. NFCI. Reported in https://www.viva64.com/en/b/0629/ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359467 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp b/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp index ea6b28e8c68..779b46da9e6 100644 --- a/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp +++ b/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp @@ -650,7 +650,6 @@ static void printMCExpr(const MCExpr *E, raw_ostream &OS) { void SystemZOperand::print(raw_ostream &OS) const { switch (Kind) { - break; case KindToken: OS << "Token:" << getToken(); break;