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 e21e63f8d0e261c034c0876f878fc138e2f273a1..78d8d17aafc2fed27c7be96ffc9a01ea4f8f3dd4 100644 |
--- a/src/compiler/arm/instruction-selector-arm.cc |
+++ b/src/compiler/arm/instruction-selector-arm.cc |
@@ -494,6 +494,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()); |