| Index: src/full-codegen/x64/full-codegen-x64.cc | 
| diff --git a/src/full-codegen/x64/full-codegen-x64.cc b/src/full-codegen/x64/full-codegen-x64.cc | 
| index b2f16f0246671b06323b821fa61e9bc286e2e454..053b80e69045fdd585fabf8eeaca13fd1483f3e5 100644 | 
| --- a/src/full-codegen/x64/full-codegen-x64.cc | 
| +++ b/src/full-codegen/x64/full-codegen-x64.cc | 
| @@ -747,8 +747,8 @@ void FullCodeGenerator::VisitFunctionDeclaration( | 
| FeedbackVectorSlot slot = proxy->VariableFeedbackSlot(); | 
| DCHECK(!slot.IsInvalid()); | 
| globals_->Add(handle(Smi::FromInt(slot.ToInt()), isolate()), zone()); | 
| -      Handle<SharedFunctionInfo> function = Compiler::GetSharedFunctionInfo( | 
| -          declaration->fun(), script(), info_, compilation_mode_); | 
| +      Handle<SharedFunctionInfo> function = | 
| +          Compiler::GetSharedFunctionInfo(declaration->fun(), script(), info_); | 
| // Check for stack-overflow exception. | 
| if (function.is_null()) return SetStackOverflow(); | 
| globals_->Add(function, zone()); | 
|  |