Index: src/compiler/js-generic-lowering.cc |
diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc |
index eca6f352a5fffa045675d4907dd26e83ce585238..7a92797e8ac34847e723f6982bd980c93b2bf9eb 100644 |
--- a/src/compiler/js-generic-lowering.cc |
+++ b/src/compiler/js-generic-lowering.cc |
@@ -428,7 +428,7 @@ void JSGenericLowering::LowerJSStoreContext(Node* node) { |
node->ReplaceInput(1, jsgraph()->Int32Constant(Context::SlotOffset( |
static_cast<int>(access.index())))); |
NodeProperties::ChangeOp( |
- node, machine()->Store(StoreRepresentation(MachineType::AnyTagged(), |
+ node, machine()->Store(StoreRepresentation(MachineRepresentation::kTagged, |
kFullWriteBarrier))); |
} |
@@ -820,7 +820,8 @@ void JSGenericLowering::LowerJSStoreMessage(Node* node) { |
node->RemoveInput(NodeProperties::FirstContextIndex(node)); |
node->InsertInput(zone(), 0, jsgraph()->ExternalConstant(message_address)); |
node->InsertInput(zone(), 1, jsgraph()->IntPtrConstant(0)); |
- StoreRepresentation representation(MachineType::AnyTagged(), kNoWriteBarrier); |
+ StoreRepresentation representation(MachineRepresentation::kTagged, |
+ kNoWriteBarrier); |
NodeProperties::ChangeOp(node, machine()->Store(representation)); |
} |