Index: src/compiler/js-graph.h |
diff --git a/src/compiler/js-graph.h b/src/compiler/js-graph.h |
index 4190cd76a1376eb5fc68180d70ac45157cbb3687..c421350c05f66333d90f1417f5376fcd17487083 100644 |
--- a/src/compiler/js-graph.h |
+++ b/src/compiler/js-graph.h |
@@ -39,6 +39,8 @@ class JSGraph : public ZoneObject { |
} |
// Canonicalized global constants. |
+ Node* AllocateInNewSpaceStubConstant(); |
+ Node* AllocateInOldSpaceStubConstant(); |
Node* CEntryStubConstant(int result_size); |
Node* EmptyFixedArrayConstant(); |
Node* HeapNumberMapConstant(); |
@@ -140,6 +142,8 @@ class JSGraph : public ZoneObject { |
private: |
enum CachedNode { |
+ kAllocateInNewSpaceStubConstant, |
+ kAllocateInOldSpaceStubConstant, |
kCEntryStubConstant, |
kEmptyFixedArrayConstant, |
kHeapNumberMapConstant, |