| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index 1fc510a53ea69019c050f85dad13bffb10e9caa3..eb3224b02fde1e194cdc81788e72473a07c310de 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -709,7 +709,6 @@ MaybeHandle<Code> GetOptimizedCode(Handle<JSFunction> function,
|
| parse_info->set_eval();
|
| parse_info->set_toplevel();
|
| parse_info->set_allow_lazy_parsing(false);
|
| - parse_info->set_lazy(false);
|
| }
|
|
|
| // Verify that OSR compilations are delegated to the correct graph builder.
|
| @@ -1258,7 +1257,6 @@ bool Compiler::CompileDebugCode(Handle<JSFunction> function) {
|
| parse_info.set_eval();
|
| parse_info.set_toplevel();
|
| parse_info.set_allow_lazy_parsing(false);
|
| - parse_info.set_lazy(false);
|
| }
|
| info.MarkAsDebug();
|
| if (GetUnoptimizedCode(&info).is_null()) {
|
| @@ -1285,7 +1283,6 @@ bool Compiler::CompileDebugCode(Handle<SharedFunctionInfo> shared) {
|
| parse_info.set_eval();
|
| parse_info.set_toplevel();
|
| parse_info.set_allow_lazy_parsing(false);
|
| - parse_info.set_lazy(false);
|
| }
|
| info.MarkAsDebug();
|
| if (GetUnoptimizedCode(&info).is_null()) {
|
|
|