Index: src/hydrogen.h |
diff --git a/src/hydrogen.h b/src/hydrogen.h |
index d25bb5f9bdadd9e70a7fc5e3a0bfdb992df917f9..e01a2800b4a6b7fb8ae17cb5c101559bf3880590 100644 |
--- a/src/hydrogen.h |
+++ b/src/hydrogen.h |
@@ -2439,8 +2439,10 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor { |
PushBeforeSimulateBehavior push_sim_result); |
HInstruction* BuildIncrement(bool returns_original_input, |
CountOperation* expr); |
- HInstruction* BuildLoadKeyedGeneric(HValue* object, |
- HValue* key); |
+ HInstruction* BuildKeyedGeneric(PropertyAccessType access_type, |
+ HValue* object, |
+ HValue* key, |
+ HValue* value); |
HInstruction* TryBuildConsolidatedElementLoad(HValue* object, |
HValue* key, |
@@ -2503,9 +2505,6 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor { |
HInstruction* BuildStoreNamedField(PropertyAccessInfo* info, |
HValue* checked_object, |
HValue* value); |
- HInstruction* BuildStoreKeyedGeneric(HValue* object, |
- HValue* key, |
- HValue* value); |
HValue* BuildContextChainWalk(Variable* var); |