| 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 d4dd3eee780613000ad15d769e1a38835ce629ed..dab2766044c63297edb0694c7da9c84aba1ea30c 100644
|
| --- a/src/compiler/arm64/instruction-selector-arm64.cc
|
| +++ b/src/compiler/arm64/instruction-selector-arm64.cc
|
| @@ -391,9 +391,9 @@ void InstructionSelector::VisitStore(Node* node) {
|
| Node* index = node->InputAt(1);
|
| Node* value = node->InputAt(2);
|
|
|
| - StoreRepresentation store_rep = OpParameter<StoreRepresentation>(node);
|
| + StoreRepresentation store_rep = StoreRepresentationOf(node->op());
|
| WriteBarrierKind write_barrier_kind = store_rep.write_barrier_kind();
|
| - MachineRepresentation rep = store_rep.machine_type().representation();
|
| + MachineRepresentation rep = store_rep.representation();
|
|
|
| // TODO(arm64): I guess this could be done in a better way.
|
| if (write_barrier_kind != kNoWriteBarrier) {
|
| @@ -506,8 +506,7 @@ void InstructionSelector::VisitCheckedLoad(Node* node) {
|
|
|
|
|
| void InstructionSelector::VisitCheckedStore(Node* node) {
|
| - MachineRepresentation rep =
|
| - CheckedStoreRepresentationOf(node->op()).representation();
|
| + MachineRepresentation rep = CheckedStoreRepresentationOf(node->op());
|
| Arm64OperandGenerator g(this);
|
| Node* const buffer = node->InputAt(0);
|
| Node* const offset = node->InputAt(1);
|
|
|