Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 47b555c27706a8d9c65f53f856a9c4b3afaac916..3210f7b77749d4163865d9dde36eea04d8604d8e 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -787,11 +787,6 @@ static bool CompileUnoptimizedCode(CompilationInfo* info) { |
static bool UseIgnition(CompilationInfo* info) { |
Michael Starzinger
2016/03/15 14:19:13
As discussed offline: We now need to guard and bla
rmcilroy
2016/03/15 17:31:46
Yup, missed this. Done.
|
- // Cannot use Ignition when the {function_data} is already used. |
- if (info->has_shared_info() && info->shared_info()->HasBuiltinFunctionId()) { |
- return false; |
- } |
- |
// TODO(4681): Generators are not yet supported. |
if ((info->has_shared_info() && info->shared_info()->is_generator()) || |
(info->has_literal() && IsGeneratorFunction(info->literal()->kind()))) { |