| Index: src/compiler/js-graph.cc
|
| diff --git a/src/compiler/js-graph.cc b/src/compiler/js-graph.cc
|
| index 229169f792432fbc52a388ca3e48aed7bc18153e..26c025516d2c6c717eed7cfc09651f47000e07b2 100644
|
| --- a/src/compiler/js-graph.cc
|
| +++ b/src/compiler/js-graph.cc
|
| @@ -38,6 +38,11 @@ Node* JSGraph::EmptyFixedArrayConstant() {
|
| HeapConstant(factory()->empty_fixed_array()));
|
| }
|
|
|
| +Node* JSGraph::EmptyLiteralsArrayConstant() {
|
| + return CACHED(kEmptyLiteralsArrayConstant,
|
| + HeapConstant(factory()->empty_literals_array()));
|
| +}
|
| +
|
| Node* JSGraph::HeapNumberMapConstant() {
|
| return CACHED(kHeapNumberMapConstant,
|
| HeapConstant(factory()->heap_number_map()));
|
|
|