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 2fa7b42d373c49674e240c31650b6c03c364355d..429fa98e3557e3d51f3fd74072ec5d57c8b36170 100644 |
--- a/src/compiler/arm/instruction-selector-arm.cc |
+++ b/src/compiler/arm/instruction-selector-arm.cc |
@@ -433,6 +433,11 @@ void InstructionSelector::VisitStore(Node* node) { |
} |
} |
+// Architecture supports unaligned access, therefore VisitLoad is used instead |
+void InstructionSelector::VisitUnalignedLoad(Node* node) { UNREACHABLE(); } |
+ |
+// Architecture supports unaligned access, therefore VisitStore is used instead |
+void InstructionSelector::VisitUnalignedStore(Node* node) { UNREACHABLE(); } |
void InstructionSelector::VisitCheckedLoad(Node* node) { |
CheckedLoadRepresentation load_rep = CheckedLoadRepresentationOf(node->op()); |