Index: src/compiler/arm/instruction-selector-arm.cc |
diff --git a/src/compiler/arm/instruction-selector-arm.cc b/src/compiler/arm/instruction-selector-arm.cc |
index 47a19db9cd82484d59b070ac1c7a0f2682445b04..15bd856b5b473b5d4b9f81de77f119f0e7a5ee7c 100644 |
--- a/src/compiler/arm/instruction-selector-arm.cc |
+++ b/src/compiler/arm/instruction-selector-arm.cc |
@@ -426,8 +426,10 @@ void InstructionSelector::VisitLoad(Node* node) { |
case MachineRepresentation::kWord32: |
opcode = kArmLdr; |
break; |
+ case MachineRepresentation::kSimd128: |
+ opcode = kArmSimd128Load; |
+ break; |
case MachineRepresentation::kWord64: // Fall through. |
- case MachineRepresentation::kSimd128: // Fall through. |
case MachineRepresentation::kSimd1x4: // Fall through. |
case MachineRepresentation::kSimd1x8: // Fall through. |
case MachineRepresentation::kSimd1x16: // Fall through. |
@@ -514,8 +516,10 @@ void InstructionSelector::VisitStore(Node* node) { |
case MachineRepresentation::kWord32: |
opcode = kArmStr; |
break; |
+ case MachineRepresentation::kSimd128: |
+ opcode = kArmSimd128Store; |
+ break; |
case MachineRepresentation::kWord64: // Fall through. |
- case MachineRepresentation::kSimd128: // Fall through. |
case MachineRepresentation::kSimd1x4: // Fall through. |
case MachineRepresentation::kSimd1x8: // Fall through. |
case MachineRepresentation::kSimd1x16: // Fall through. |