Index: runtime/vm/compiler.cc |
diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc |
index 698d5967d04aaec3fc6ae70cedbc2bd65acdea9e..4b9533e3e1d53ee94f4fcf131b16c2abdb39a5e4 100644 |
--- a/runtime/vm/compiler.cc |
+++ b/runtime/vm/compiler.cc |
@@ -115,11 +115,9 @@ DECLARE_FLAG(bool, trace_irregexp); |
bool UseKernelFrontEndFor(ParsedFunction* parsed_function) { |
const Function& function = parsed_function->function(); |
- // TODO(regis): Kernel Front End needs to allocate a local to hold type args. |
return (function.kernel_offset() > 0) || |
- (!FLAG_reify_generic_functions && |
- ((function.kind() == RawFunction::kNoSuchMethodDispatcher) || |
- (function.kind() == RawFunction::kInvokeFieldDispatcher))); |
+ (function.kind() == RawFunction::kNoSuchMethodDispatcher) || |
+ (function.kind() == RawFunction::kInvokeFieldDispatcher); |
} |