Index: src/compiler/js-graph.cc |
diff --git a/src/compiler/js-graph.cc b/src/compiler/js-graph.cc |
index b51623aca2ea96cb7a230d0cb2357b9520fab105..93706acf5a04e463d081966482d356cfd7a08254 100644 |
--- a/src/compiler/js-graph.cc |
+++ b/src/compiler/js-graph.cc |
@@ -280,6 +280,14 @@ Node* JSGraph::EmptyStateValues() { |
0, SparseInputMask::Dense()))); |
} |
+Node* JSGraph::SingleDeadTypedStateValues() { |
+ return CACHED(kSingleDeadTypedStateValues, |
+ graph()->NewNode(common()->TypedStateValues( |
+ new (graph()->zone()->New(sizeof(ZoneVector<MachineType>))) |
+ ZoneVector<MachineType>(0, graph()->zone()), |
+ SparseInputMask(SparseInputMask::kEndMarker << 1)))); |
+} |
+ |
Node* JSGraph::Dead() { |
return CACHED(kDead, graph()->NewNode(common()->Dead())); |
} |