Index: src/compiler/instruction.h |
diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h |
index cc19c52816905e2076dab6a4104248639a5e43f6..c32a2b5cb53547b8a072c8414f1477d966c687a8 100644 |
--- a/src/compiler/instruction.h |
+++ b/src/compiler/instruction.h |
@@ -479,9 +479,6 @@ class LocationOperand : public InstructionOperand { |
case MachineRepresentation::kFloat32: |
case MachineRepresentation::kFloat64: |
case MachineRepresentation::kSimd128: |
- case MachineRepresentation::kSimd1x4: |
- case MachineRepresentation::kSimd1x8: |
- case MachineRepresentation::kSimd1x16: |
case MachineRepresentation::kTaggedSigned: |
case MachineRepresentation::kTaggedPointer: |
case MachineRepresentation::kTagged: |
@@ -590,9 +587,8 @@ bool InstructionOperand::IsDoubleRegister() const { |
} |
bool InstructionOperand::IsSimd128Register() const { |
- return IsAnyRegister() && |
- LocationOperand::cast(this)->representation() == |
- MachineRepresentation::kSimd128; |
+ return IsAnyRegister() && LocationOperand::cast(this)->representation() == |
+ MachineRepresentation::kSimd128; |
} |
bool InstructionOperand::IsAnyStackSlot() const { |