Index: src/hydrogen.h |
diff --git a/src/hydrogen.h b/src/hydrogen.h |
index b3cb8ffc75dc3796ae288967b29c9c46f21a2e3e..24038d57a9eb5814d73f34f4ae25cc8af2bb8f24 100644 |
--- a/src/hydrogen.h |
+++ b/src/hydrogen.h |
@@ -1583,12 +1583,13 @@ class HGraphBuilder { |
JSArrayBuilder(HGraphBuilder* builder, |
ElementsKind kind, |
- HValue* constructor_function); |
+ HValue* constructor_function = NULL); |
HValue* AllocateEmptyArray(); |
HValue* AllocateArray(HValue* capacity, HValue* length_field, |
bool fill_with_hole); |
HValue* GetElementsLocation() { return elements_location_; } |
+ HValue* EmitMapCode(); |
private: |
Zone* zone() const { return builder_->zone(); } |
@@ -1602,7 +1603,6 @@ class HGraphBuilder { |
return JSArray::kPreallocatedArrayElements; |
} |
- HValue* EmitMapCode(); |
HValue* EmitInternalMapCode(); |
HValue* EstablishEmptyArrayAllocationSize(); |
HValue* EstablishAllocationSize(HValue* length_node); |