| Index: src/compiler/ia32/instruction-selector-ia32.cc
|
| diff --git a/src/compiler/ia32/instruction-selector-ia32.cc b/src/compiler/ia32/instruction-selector-ia32.cc
|
| index e1926169f4e06bd7dbc77cc0ee5e2337173e279a..f96eb274d32a80d03fef8022269cd888f8d51dcc 100644
|
| --- a/src/compiler/ia32/instruction-selector-ia32.cc
|
| +++ b/src/compiler/ia32/instruction-selector-ia32.cc
|
| @@ -213,9 +213,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();
|
|
|
| if (write_barrier_kind != kNoWriteBarrier) {
|
| DCHECK_EQ(MachineRepresentation::kTagged, rep);
|
| @@ -344,8 +344,7 @@ void InstructionSelector::VisitCheckedLoad(Node* node) {
|
|
|
|
|
| void InstructionSelector::VisitCheckedStore(Node* node) {
|
| - MachineRepresentation rep =
|
| - CheckedStoreRepresentationOf(node->op()).representation();
|
| + MachineRepresentation rep = CheckedStoreRepresentationOf(node->op());
|
| IA32OperandGenerator g(this);
|
| Node* const buffer = node->InputAt(0);
|
| Node* const offset = node->InputAt(1);
|
|
|