Index: src/compiler/x64/instruction-selector-x64.cc |
diff --git a/src/compiler/x64/instruction-selector-x64.cc b/src/compiler/x64/instruction-selector-x64.cc |
index c2101ca7a204ea84f390664a57fc73a4db83e5a7..cc0262bdb3278b780f4afdb286087a7a3c549ad1 100644 |
--- a/src/compiler/x64/instruction-selector-x64.cc |
+++ b/src/compiler/x64/instruction-selector-x64.cc |
@@ -277,6 +277,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()); |