| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index 546ac887421ab2e10f251ec038d98f049dc37755..7aa8be9fb437aeb2612ca50bf1e1c291fc37a397 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -945,11 +945,8 @@ MaybeHandle<Code> Compiler::GetLazyCode(Handle<JSFunction> function) {
|
| VMState<COMPILER> state(isolate);
|
| PostponeInterruptsScope postpone(isolate);
|
|
|
| - info.SetOptimizing(BailoutId::None(),
|
| - Handle<Code>(function->shared()->code()));
|
| -
|
| + info.SetOptimizing(BailoutId::None(), handle(function->shared()->code()));
|
| info.MarkAsContextSpecializing();
|
| - info.MarkAsTypingEnabled();
|
|
|
| if (GetOptimizedCodeNow(&info)) {
|
| DCHECK(function->shared()->is_compiled());
|
|
|