Index: runtime/vm/flow_graph_builder.cc |
diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc |
index 6f7ff8d19090449800c2d188ebe3899374ba5bfe..c9e02e7c683fc4b3893c9fa30c1fe13de30d6914 100644 |
--- a/runtime/vm/flow_graph_builder.cc |
+++ b/runtime/vm/flow_graph_builder.cc |
@@ -4336,6 +4336,7 @@ void EffectGraphVisitor::VisitTryCatchNode(TryCatchNode* node) { |
CatchBlockEntryInstr* catch_entry = |
new(Z) CatchBlockEntryInstr(owner()->AllocateBlockId(), |
catch_handler_index, |
+ owner()->graph_entry(), |
catch_block->handler_types(), |
try_handler_index, |
catch_block->exception_var(), |
@@ -4381,6 +4382,7 @@ void EffectGraphVisitor::VisitTryCatchNode(TryCatchNode* node) { |
CatchBlockEntryInstr* finally_entry = |
new(Z) CatchBlockEntryInstr(owner()->AllocateBlockId(), |
original_handler_index, |
+ owner()->graph_entry(), |
types, |
catch_handler_index, |
catch_block->exception_var(), |