| Index: src/compiler/code-assembler.cc
|
| diff --git a/src/compiler/code-assembler.cc b/src/compiler/code-assembler.cc
|
| index 9b137c03c5430a2e77fbe521f44d28cc0a1cf67b..97d8724a76a55e291d5fcfc38523c05f0c318d1b 100644
|
| --- a/src/compiler/code-assembler.cc
|
| +++ b/src/compiler/code-assembler.cc
|
| @@ -307,13 +307,14 @@ Node* CodeAssembler::LoadRoot(Heap::RootListIndex root_index) {
|
| IntPtrConstant(root_index * kPointerSize));
|
| }
|
|
|
| -Node* CodeAssembler::Store(MachineRepresentation rep, Node* base, Node* value) {
|
| - return raw_assembler()->Store(rep, base, value, kFullWriteBarrier);
|
| +Node* CodeAssembler::Store(Node* base, Node* value) {
|
| + return raw_assembler()->Store(MachineRepresentation::kTagged, base, value,
|
| + kFullWriteBarrier);
|
| }
|
|
|
| -Node* CodeAssembler::Store(MachineRepresentation rep, Node* base, Node* offset,
|
| - Node* value) {
|
| - return raw_assembler()->Store(rep, base, offset, value, kFullWriteBarrier);
|
| +Node* CodeAssembler::Store(Node* base, Node* offset, Node* value) {
|
| + return raw_assembler()->Store(MachineRepresentation::kTagged, base, offset,
|
| + value, kFullWriteBarrier);
|
| }
|
|
|
| Node* CodeAssembler::StoreNoWriteBarrier(MachineRepresentation rep, Node* base,
|
|
|