| Index: src/compiler/arm64/instruction-selector-arm64.cc
|
| diff --git a/src/compiler/arm64/instruction-selector-arm64.cc b/src/compiler/arm64/instruction-selector-arm64.cc
|
| index ff9943ff5f2ea3321546e7972c056cff1ce58e93..923c1831b0dbc96c25d841501ca2229fa567475c 100644
|
| --- a/src/compiler/arm64/instruction-selector-arm64.cc
|
| +++ b/src/compiler/arm64/instruction-selector-arm64.cc
|
| @@ -602,9 +602,6 @@ void InstructionSelector::VisitLoad(Node* node) {
|
| immediate_mode = kLoadStoreImm64;
|
| break;
|
| case MachineRepresentation::kSimd128: // Fall through.
|
| - case MachineRepresentation::kSimd1x4: // Fall through.
|
| - case MachineRepresentation::kSimd1x8: // Fall through.
|
| - case MachineRepresentation::kSimd1x16: // Fall through.
|
| case MachineRepresentation::kNone:
|
| UNREACHABLE();
|
| return;
|
| @@ -701,9 +698,6 @@ void InstructionSelector::VisitStore(Node* node) {
|
| immediate_mode = kLoadStoreImm64;
|
| break;
|
| case MachineRepresentation::kSimd128: // Fall through.
|
| - case MachineRepresentation::kSimd1x4: // Fall through.
|
| - case MachineRepresentation::kSimd1x8: // Fall through.
|
| - case MachineRepresentation::kSimd1x16: // Fall through.
|
| case MachineRepresentation::kNone:
|
| UNREACHABLE();
|
| return;
|
| @@ -772,9 +766,6 @@ void InstructionSelector::VisitCheckedLoad(Node* node) {
|
| case MachineRepresentation::kTaggedPointer: // Fall through.
|
| case MachineRepresentation::kTagged: // Fall through.
|
| case MachineRepresentation::kSimd128: // Fall through.
|
| - case MachineRepresentation::kSimd1x4: // Fall through.
|
| - case MachineRepresentation::kSimd1x8: // Fall through.
|
| - case MachineRepresentation::kSimd1x16: // Fall through.
|
| case MachineRepresentation::kNone:
|
| UNREACHABLE();
|
| return;
|
| @@ -827,9 +818,6 @@ void InstructionSelector::VisitCheckedStore(Node* node) {
|
| case MachineRepresentation::kTaggedPointer: // Fall through.
|
| case MachineRepresentation::kTagged: // Fall through.
|
| case MachineRepresentation::kSimd128: // Fall through.
|
| - case MachineRepresentation::kSimd1x4: // Fall through.
|
| - case MachineRepresentation::kSimd1x8: // Fall through.
|
| - case MachineRepresentation::kSimd1x16: // Fall through.
|
| case MachineRepresentation::kNone:
|
| UNREACHABLE();
|
| return;
|
|
|