| Index: src/compiler/js-graph.h
|
| diff --git a/src/compiler/js-graph.h b/src/compiler/js-graph.h
|
| index 631df299d736054acf2c9c2e4a7138fc370a49ff..16760a5a9d189066f764015f2ab75d1324c7c8d1 100644
|
| --- a/src/compiler/js-graph.h
|
| +++ b/src/compiler/js-graph.h
|
| @@ -40,6 +40,7 @@ class JSGraph : public ZoneObject {
|
|
|
| // Canonicalized global constants.
|
| Node* CEntryStubConstant(int result_size);
|
| + Node* EmptyFixedArrayConstant();
|
| Node* UndefinedConstant();
|
| Node* TheHoleConstant();
|
| Node* TrueConstant();
|
| @@ -134,6 +135,7 @@ class JSGraph : public ZoneObject {
|
| private:
|
| enum CachedNode {
|
| kCEntryStubConstant,
|
| + kEmptyFixedArrayConstant,
|
| kUndefinedConstant,
|
| kTheHoleConstant,
|
| kTrueConstant,
|
|
|