| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index fcdb9e8de8bdf1a8a0f4e97e4cced255f78c8377..94b06cee4d1a8290786e8d123a1a3b87818f9ced 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -429,7 +429,7 @@ void EnsureFeedbackVector(CompilationInfo* info) {
|
|
|
| bool UseIgnition(CompilationInfo* info) {
|
| if (info->is_debug()) return false;
|
| - if (info->shared_info()->is_generator() && !FLAG_ignition_generators) {
|
| + if (info->shared_info()->is_resumable() && !FLAG_ignition_generators) {
|
| return false;
|
| }
|
|
|
|
|