| Index: src/compiler.cc
 | 
| diff --git a/src/compiler.cc b/src/compiler.cc
 | 
| index e496aee62d6760f3f13325fe5e84147aa1b7a91d..76da9ceb1efbc8ff2cd8635f725c7cdd7f6e2c0a 100644
 | 
| --- a/src/compiler.cc
 | 
| +++ b/src/compiler.cc
 | 
| @@ -44,8 +44,7 @@ ScriptData::ScriptData(const byte* data, int length)
 | 
|  }
 | 
|  
 | 
|  
 | 
| -CompilationInfo::CompilationInfo(Handle<Script> script,
 | 
| -                                 Zone* zone)
 | 
| +CompilationInfo::CompilationInfo(Handle<Script> script, Zone* zone)
 | 
|      : flags_(StrictModeField::encode(SLOPPY)),
 | 
|        script_(script),
 | 
|        osr_ast_id_(BailoutId::None()),
 | 
| @@ -86,8 +85,7 @@ CompilationInfo::CompilationInfo(Handle<SharedFunctionInfo> shared_info,
 | 
|  }
 | 
|  
 | 
|  
 | 
| -CompilationInfo::CompilationInfo(Handle<JSFunction> closure,
 | 
| -                                 Zone* zone)
 | 
| +CompilationInfo::CompilationInfo(Handle<JSFunction> closure, Zone* zone)
 | 
|      : flags_(StrictModeField::encode(SLOPPY) | IsLazy::encode(true)),
 | 
|        closure_(closure),
 | 
|        shared_info_(Handle<SharedFunctionInfo>(closure->shared())),
 | 
| @@ -103,8 +101,7 @@ CompilationInfo::CompilationInfo(Handle<JSFunction> closure,
 | 
|  }
 | 
|  
 | 
|  
 | 
| -CompilationInfo::CompilationInfo(HydrogenCodeStub* stub,
 | 
| -                                 Isolate* isolate,
 | 
| +CompilationInfo::CompilationInfo(HydrogenCodeStub* stub, Isolate* isolate,
 | 
|                                   Zone* zone)
 | 
|      : flags_(StrictModeField::encode(SLOPPY) | IsLazy::encode(true)),
 | 
|        osr_ast_id_(BailoutId::None()),
 | 
| 
 |