Index: runtime/vm/flow_graph_compiler_dbc.cc |
diff --git a/runtime/vm/flow_graph_compiler_dbc.cc b/runtime/vm/flow_graph_compiler_dbc.cc |
index 47cfb97c4d0c605ba11660405c98e1837f27ef24..992c94ce275fe22555a3841b5348cecb4c559b93 100644 |
--- a/runtime/vm/flow_graph_compiler_dbc.cc |
+++ b/runtime/vm/flow_graph_compiler_dbc.cc |
@@ -421,6 +421,12 @@ void FlowGraphCompiler::EmitFrameEntry() { |
} else if (has_optional_params && !is_optimizing()) { |
__ LoadConstant(context_index, Object::empty_context()); |
} |
+ |
+ // Check for a passed type argument vector if the function is generic. |
+ if (FLAG_reify_generic_functions && function.IsGeneric()) { |
+ __ Comment("Check passed-in type args"); |
+ UNIMPLEMENTED(); // TODO(regis): Not yet supported. |
+ } |
} |