| Index: src/compiler/x87/instruction-selector-x87.cc
|
| diff --git a/src/compiler/x87/instruction-selector-x87.cc b/src/compiler/x87/instruction-selector-x87.cc
|
| index 404d053e92f7168599391a64ba85e8b56d8464df..cb34e0f80e1dd99c9b51e656f4641530709b2538 100644
|
| --- a/src/compiler/x87/instruction-selector-x87.cc
|
| +++ b/src/compiler/x87/instruction-selector-x87.cc
|
| @@ -264,6 +264,11 @@ void InstructionSelector::VisitStore(Node* node) {
|
| }
|
| }
|
|
|
| +// Architecture supports unaliged access, therefore VisitLoad is used instead
|
| +void InstructionSelector::VisitUnalignedLoad(Node* node) { UNREACHABLE(); }
|
| +
|
| +// Architecture supports unaliged access, therefore VisitStore is used instead
|
| +void InstructionSelector::VisitUnalignedStore(Node* node) { UNREACHABLE(); }
|
|
|
| void InstructionSelector::VisitCheckedLoad(Node* node) {
|
| CheckedLoadRepresentation load_rep = CheckedLoadRepresentationOf(node->op());
|
|
|