| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index 7330b40f19b75eed97bb5fd1fa2e8a9268050e2a..aada244f7fad8f09c7e8a772a45afaced9858dba 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -450,11 +450,6 @@ bool ShouldUseIgnition(CompilationInfo* info) {
|
| return info->shared_info()->HasBytecodeArray();
|
| }
|
|
|
| - // For generator or async functions we might avoid Ignition wholesale.
|
| - if (info->shared_info()->is_resumable() && !FLAG_ignition_generators) {
|
| - return false;
|
| - }
|
| -
|
| // Since we can't OSR from Ignition, skip Ignition for asm.js functions.
|
| if (info->shared_info()->asm_function()) {
|
| return false;
|
|
|