Index: src/hydrogen.h |
diff --git a/src/hydrogen.h b/src/hydrogen.h |
index 1a878759121e77337cd374058ea4e47f65e1d8d4..a2ce9c3d209b414777e8f47789e1d66e4ea0345c 100644 |
--- a/src/hydrogen.h |
+++ b/src/hydrogen.h |
@@ -2480,9 +2480,11 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor { |
bool is_store, |
bool* has_side_effects); |
- HInstruction* BuildLoadNamedGeneric(HValue* object, |
- Handle<String> name, |
- bool is_uninitialized = false); |
+ HInstruction* BuildNamedGeneric(PropertyAccessType access, |
+ HValue* object, |
+ Handle<String> name, |
+ HValue* value, |
+ bool is_uninitialized = false); |
HCheckMaps* AddCheckMap(HValue* object, Handle<Map> map); |
@@ -2509,10 +2511,6 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor { |
HInstruction* BuildStoreNamedField(PropertyAccessInfo* info, |
HValue* checked_object, |
HValue* value); |
- HInstruction* BuildStoreNamedGeneric(HValue* object, |
- Handle<String> name, |
- HValue* value, |
- bool is_uninitialized = false); |
HInstruction* BuildStoreKeyedGeneric(HValue* object, |
HValue* key, |
HValue* value); |