| Index: src/runtime-profiler.cc
|
| diff --git a/src/runtime-profiler.cc b/src/runtime-profiler.cc
|
| index eaa6e15603a7e94f5a021d46ae468c64efdbab78..9837ce766bae1ce75d5c317eb7f4fc55bd5a7706 100644
|
| --- a/src/runtime-profiler.cc
|
| +++ b/src/runtime-profiler.cc
|
| @@ -207,7 +207,8 @@ void RuntimeProfiler::OptimizeNow() {
|
| }
|
| }
|
|
|
| - if (function->IsMarkedForLazyRecompilation()) {
|
| + if (function->IsMarkedForLazyRecompilation() &&
|
| + function->shared()->code()->kind() == Code::FUNCTION) {
|
| Code* unoptimized = function->shared()->code();
|
| int nesting = unoptimized->allow_osr_at_loop_nesting_level();
|
| if (nesting == 0) AttemptOnStackReplacement(function);
|
|
|