| Index: src/compiler/ia32/instruction-selector-ia32.cc | 
| diff --git a/src/compiler/ia32/instruction-selector-ia32.cc b/src/compiler/ia32/instruction-selector-ia32.cc | 
| index 3852c05bbcaa3f80d15df7958cfcc20aa1cbbbca..7920a3f78d1f9712759ccbbc0713f0ba11f78a88 100644 | 
| --- a/src/compiler/ia32/instruction-selector-ia32.cc | 
| +++ b/src/compiler/ia32/instruction-selector-ia32.cc | 
| @@ -303,6 +303,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()); | 
|  |