Index: runtime/vm/flow_graph_builder.cc |
diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc |
index cacb2fbcd6e4f3219a4957661a06779bae7b6256..569a2012f6877306a449119e021f9e12fa9d58e4 100644 |
--- a/runtime/vm/flow_graph_builder.cc |
+++ b/runtime/vm/flow_graph_builder.cc |
@@ -2077,6 +2077,12 @@ void EffectGraphVisitor::VisitArgumentListNode(ArgumentListNode* node) { |
} |
+void EffectGraphVisitor::VisitAwaitNode(AwaitNode* node) { |
+ // Await nodes are temporary during parsing. |
+ UNREACHABLE(); |
+} |
+ |
+ |
intptr_t EffectGraphVisitor::GetCurrentTempLocalIndex() const { |
return kFirstLocalSlotFromFp |
- owner()->num_stack_locals() |