| Index: src/compilation-info.cc
|
| diff --git a/src/compilation-info.cc b/src/compilation-info.cc
|
| index e8d460771370216641e51aaf2ca4978941c918e1..1bae95fbde2af505615d1fea0b0c29c2c496d2a9 100644
|
| --- a/src/compilation-info.cc
|
| +++ b/src/compilation-info.cc
|
| @@ -52,10 +52,10 @@ bool CompilationInfo::has_shared_info() const {
|
| return parse_info_ && !parse_info_->shared_info().is_null();
|
| }
|
|
|
| -CompilationInfo::CompilationInfo(ParseInfo* parse_info,
|
| +CompilationInfo::CompilationInfo(Zone* zone, ParseInfo* parse_info,
|
| Handle<JSFunction> closure)
|
| : CompilationInfo(parse_info, {}, Code::ComputeFlags(Code::FUNCTION), BASE,
|
| - parse_info->isolate(), parse_info->zone()) {
|
| + parse_info->isolate(), zone) {
|
| closure_ = closure;
|
|
|
| // Compiling for the snapshot typically results in different code than
|
|
|