| 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 45779c7823ef011930296c91584a40b2bf06e5c3..4834141dc98a9107eb474b8f2ee057cde2634f71 100644
|
| --- a/src/compiler/x87/instruction-selector-x87.cc
|
| +++ b/src/compiler/x87/instruction-selector-x87.cc
|
| @@ -299,6 +299,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());
|
|
|