diff options
author | Craig Topper <craig.topper@gmail.com> | 2015-01-03 08:16:34 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2015-01-03 08:16:34 +0000 |
commit | 589ceee7f449db13c61995625be7bd2374d23595 (patch) | |
tree | 62bc8a3f454dd729ba593958353b8025996d545d /llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp | |
parent | a5754e6e82ae241b2c0ca3263a0d1ccca6ae1099 (diff) | |
download | bcm5719-llvm-589ceee7f449db13c61995625be7bd2374d23595.tar.gz bcm5719-llvm-589ceee7f449db13c61995625be7bd2374d23595.zip |
Minor cleanup to all the switches after MatchInstructionImpl in all the AsmParsers.
Make sure they all have llvm_unreachable on the default path out of the switch. Remove unnecessary "default: break". Remove a 'return' after unreachable. Fix some indentation.
llvm-svn: 225114
Diffstat (limited to 'llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp b/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp index 1b1e31acd42..cd36e58b78d 100644 --- a/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp +++ b/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp @@ -1053,7 +1053,6 @@ bool PPCAsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, MCInst Inst; switch (MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm)) { - default: break; case Match_Success: // Post-process instructions (typically extended mnemonics) ProcessInstruction(Inst, Operands); @@ -1063,7 +1062,7 @@ bool PPCAsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, case Match_MissingFeature: return Error(IDLoc, "instruction use requires an option to be enabled"); case Match_MnemonicFail: - return Error(IDLoc, "unrecognized instruction mnemonic"); + return Error(IDLoc, "unrecognized instruction mnemonic"); case Match_InvalidOperand: { SMLoc ErrorLoc = IDLoc; if (ErrorInfo != ~0ULL) { |