Index: src/ic/accessor-assembler-impl.h |
diff --git a/src/ic/accessor-assembler-impl.h b/src/ic/accessor-assembler-impl.h |
index 41b6e06a43eef96a8082119e56099e0ccc4b9c71..01e9bf18203ad669aeff6a4977ff19f459e2c1b3 100644 |
--- a/src/ic/accessor-assembler-impl.h |
+++ b/src/ic/accessor-assembler-impl.h |
@@ -81,12 +81,12 @@ |
Node* value; |
}; |
- enum ElementSupport { kOnlyProperties, kSupportElements }; |
- void HandleStoreICHandlerCase( |
- const StoreICParameters* p, Node* handler, Label* miss, |
- ElementSupport support_elements = kOnlyProperties); |
+ void HandleStoreICHandlerCase(const StoreICParameters* p, Node* handler, |
+ Label* miss); |
private: |
+ enum ElementSupport { kOnlyProperties, kSupportElements }; |
+ |
// Stub generation entry points. |
void LoadIC(const LoadICParameters* p); |
@@ -142,9 +142,6 @@ |
// StoreIC implementation. |
- void HandleStoreICElementHandlerCase(const StoreICParameters* p, |
- Node* handler, Label* miss); |
- |
void HandleStoreICProtoHandler(const StoreICParameters* p, Node* handler, |
Label* miss); |
// If |transition| is nullptr then the normal field store is generated or |