| Index: src/compiler/x87/instruction-selector-x87.cc
|
| diff --git a/src/compiler/x87/instruction-selector-x87.cc b/src/compiler/x87/instruction-selector-x87.cc
|
| index b5594b8894e658d462a4ae85e629b9e57fe788e3..cce44650083482a959c2fe1675f58043ba91b5c2 100644
|
| --- a/src/compiler/x87/instruction-selector-x87.cc
|
| +++ b/src/compiler/x87/instruction-selector-x87.cc
|
| @@ -203,9 +203,6 @@ void InstructionSelector::VisitLoad(Node* node) {
|
| break;
|
| case MachineRepresentation::kWord64: // 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;
|
| @@ -296,9 +293,6 @@ void InstructionSelector::VisitStore(Node* node) {
|
| break;
|
| case MachineRepresentation::kWord64: // 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;
|
| @@ -366,9 +360,6 @@ void InstructionSelector::VisitCheckedLoad(Node* node) {
|
| case MachineRepresentation::kTagged: // Fall through.
|
| case MachineRepresentation::kWord64: // 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;
|
| @@ -418,9 +409,6 @@ void InstructionSelector::VisitCheckedStore(Node* node) {
|
| case MachineRepresentation::kTagged: // Fall through.
|
| case MachineRepresentation::kWord64: // 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;
|
|
|