| Index: src/compiler/s390/instruction-selector-s390.cc
 | 
| diff --git a/src/compiler/s390/instruction-selector-s390.cc b/src/compiler/s390/instruction-selector-s390.cc
 | 
| index 8a4af5e65c5caeff7e12e4390401cb7192cc412a..b6786d7b7a92ec7d4257378424d8aa428cf7335a 100644
 | 
| --- a/src/compiler/s390/instruction-selector-s390.cc
 | 
| +++ b/src/compiler/s390/instruction-selector-s390.cc
 | 
| @@ -315,6 +315,12 @@ 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());
 | 
|    S390OperandGenerator g(this);
 | 
| 
 |