| Index: src/compiler/machine-operator.cc
|
| diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc
|
| index 10f33070a1fc38839e2ab77967c1365f83299421..4540d035bbbc7ef77a09ffefeeadcc3b6876bbf7 100644
|
| --- a/src/compiler/machine-operator.cc
|
| +++ b/src/compiler/machine-operator.cc
|
| @@ -394,7 +394,8 @@ const Operator* MachineOperatorBuilder::Store(StoreRepresentation store_rep) {
|
| break;
|
| MACHINE_REPRESENTATION_LIST(STORE)
|
| #undef STORE
|
| - default:
|
| + case MachineRepresentation::kBit:
|
| + case MachineRepresentation::kNone:
|
| break;
|
| }
|
| UNREACHABLE();
|
| @@ -423,7 +424,8 @@ const Operator* MachineOperatorBuilder::CheckedStore(
|
| return &cache_.kCheckedStore##kRep;
|
| MACHINE_REPRESENTATION_LIST(STORE)
|
| #undef STORE
|
| - default:
|
| + case MachineRepresentation::kBit:
|
| + case MachineRepresentation::kNone:
|
| break;
|
| }
|
| UNREACHABLE();
|
|
|