Index: src/mips/constants-mips.cc |
diff --git a/src/mips/constants-mips.cc b/src/mips/constants-mips.cc |
index db6e9c63b796c7a81a501e5323cd3a4f51158adc..2dcba58bd4e6a0d36e0491514f9fc274e5e3e98b 100644 |
--- a/src/mips/constants-mips.cc |
+++ b/src/mips/constants-mips.cc |
@@ -151,7 +151,7 @@ bool Instruction::IsForbiddenInBranchDelay() const { |
return true; |
default: |
return false; |
- }; |
+ } |
break; |
case SPECIAL: |
switch (FunctionFieldRaw()) { |
@@ -160,11 +160,11 @@ bool Instruction::IsForbiddenInBranchDelay() const { |
return true; |
default: |
return false; |
- }; |
+ } |
break; |
default: |
return false; |
- }; |
+ } |
} |
@@ -180,17 +180,17 @@ bool Instruction::IsLinkingInstruction() const { |
return true; |
default: |
return false; |
- }; |
+ } |
case SPECIAL: |
switch (FunctionFieldRaw()) { |
case JALR: |
return true; |
default: |
return false; |
- }; |
+ } |
default: |
return false; |
- }; |
+ } |
} |
@@ -209,7 +209,7 @@ bool Instruction::IsTrap() const { |
return true; |
default: |
return false; |
- }; |
+ } |
} |
} |
@@ -255,7 +255,7 @@ Instruction::Type Instruction::InstructionType() const { |
return kRegisterType; |
default: |
return kUnsupported; |
- }; |
+ } |
break; |
case SPECIAL2: |
switch (FunctionFieldRaw()) { |
@@ -264,7 +264,7 @@ Instruction::Type Instruction::InstructionType() const { |
return kRegisterType; |
default: |
return kUnsupported; |
- }; |
+ } |
break; |
case SPECIAL3: |
switch (FunctionFieldRaw()) { |
@@ -273,7 +273,7 @@ Instruction::Type Instruction::InstructionType() const { |
return kRegisterType; |
default: |
return kUnsupported; |
- }; |
+ } |
break; |
case COP1: // Coprocessor instructions. |
switch (RsFieldRawNoAssert()) { |
@@ -281,7 +281,7 @@ Instruction::Type Instruction::InstructionType() const { |
return kImmediateType; |
default: |
return kRegisterType; |
- }; |
+ } |
break; |
case COP1X: |
return kRegisterType; |
@@ -326,7 +326,7 @@ Instruction::Type Instruction::InstructionType() const { |
return kJumpType; |
default: |
return kUnsupported; |
- }; |
+ } |
return kUnsupported; |
} |