| 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 961682bded63c9edbe70bf3cd42ac7f477b00f26..0cb48d558ff8dd14b9d9aab577d60fff2771b233 100644 | 
| --- a/src/compiler/x87/instruction-selector-x87.cc | 
| +++ b/src/compiler/x87/instruction-selector-x87.cc | 
| @@ -304,6 +304,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()); | 
|  |