| Index: src/compiler/ppc/instruction-selector-ppc.cc
|
| diff --git a/src/compiler/ppc/instruction-selector-ppc.cc b/src/compiler/ppc/instruction-selector-ppc.cc
|
| index 02a5c2a4a527671f8b4a82a5e5d110073739914f..a3b660d5869cc7dc847240cf942513a3d203753b 100644
|
| --- a/src/compiler/ppc/instruction-selector-ppc.cc
|
| +++ b/src/compiler/ppc/instruction-selector-ppc.cc
|
| @@ -327,6 +327,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());
|
|
|