| Index: runtime/vm/flow_graph_builder.cc
|
| diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc
|
| index bcd8440da5640113621497db3b33e20d194c8eb9..1dce574ef13705629ad0d1543bd7c7668fbe2f75 100644
|
| --- a/runtime/vm/flow_graph_builder.cc
|
| +++ b/runtime/vm/flow_graph_builder.cc
|
| @@ -2535,6 +2535,9 @@ void EffectGraphVisitor::VisitTryCatchNode(TryCatchNode* node) {
|
|
|
|
|
| void EffectGraphVisitor::BuildThrowNode(ThrowNode* node) {
|
| + // TODO(kmillikin) non-local control flow is not handled correctly
|
| + // by the inliner.
|
| + InlineBailout("EffectGraphVisitor::BuildThrowNode");
|
| ValueGraphVisitor for_exception(owner(), temp_index());
|
| node->exception()->Visit(&for_exception);
|
| Append(for_exception);
|
|
|