| 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 be56dce0d844c6ea8650bd40832f9bc7592dbaa6..1e667a8184a86bff63da179b9d8daf333fdab76a 100644
|
| --- a/src/compiler/x64/instruction-selector-x64.cc
|
| +++ b/src/compiler/x64/instruction-selector-x64.cc
|
| @@ -269,6 +269,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());
|
|
|