| Index: src/mips/disasm-mips.cc
|
| diff --git a/src/mips/disasm-mips.cc b/src/mips/disasm-mips.cc
|
| index 52f33d25d24927cf511974efbc063089cfa1e10d..b16ec3eac8050fd4d5313dd09a89df307194e225 100644
|
| --- a/src/mips/disasm-mips.cc
|
| +++ b/src/mips/disasm-mips.cc
|
| @@ -277,7 +277,7 @@ void Decoder::PrintCode(Instruction* instr) {
|
| }
|
| default: // Not a break or trap instruction.
|
| break;
|
| - };
|
| + }
|
| }
|
|
|
|
|
| @@ -407,7 +407,7 @@ int Decoder::FormatOption(Instruction* instr, const char* format) {
|
| PrintCc(instr);
|
| return 2;
|
| }
|
| - };
|
| + }
|
| UNREACHABLE();
|
| return -1;
|
| }
|
| @@ -603,7 +603,7 @@ void Decoder::DecodeTypeRegister(Instruction* instr) {
|
| break;
|
| default:
|
| UNREACHABLE();
|
| - };
|
| + }
|
| break;
|
| case SPECIAL:
|
| switch (instr->FunctionFieldRaw()) {
|
| @@ -796,7 +796,7 @@ void Decoder::DecodeTypeImmediate(Instruction* instr) {
|
| break;
|
| default:
|
| UNREACHABLE();
|
| - };
|
| + }
|
| break; // Case COP1.
|
| case REGIMM:
|
| switch (instr->RtFieldRaw()) {
|
| @@ -909,7 +909,7 @@ void Decoder::DecodeTypeImmediate(Instruction* instr) {
|
| default:
|
| UNREACHABLE();
|
| break;
|
| - };
|
| + }
|
| }
|
|
|
|
|
|
|