| 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 60bfe15062582bb3c9454cd470dc02986b080c9b..c07a8afe6742c4d83f0aae4910e4c64a83652013 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 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());
 | 
| 
 |