| 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 bf0e1ba6a043766287df0db1ea617bedd072422f..82fc98d7bc657b150528364977cb433d54b291c5 100644
|
| --- a/src/compiler/ppc/instruction-selector-ppc.cc
|
| +++ b/src/compiler/ppc/instruction-selector-ppc.cc
|
| @@ -198,7 +198,10 @@ void InstructionSelector::VisitLoad(Node* node) {
|
| mode = kInt16Imm_4ByteAligned;
|
| break;
|
| #endif
|
| - default:
|
| +#if !V8_TARGET_ARCH_PPC64
|
| + case MachineRepresentation::kWord64:
|
| +#endif
|
| + case MachineRepresentation::kNone:
|
| UNREACHABLE();
|
| return;
|
| }
|
|
|