| Index: src/full-codegen/ia32/full-codegen-ia32.cc
 | 
| diff --git a/src/full-codegen/ia32/full-codegen-ia32.cc b/src/full-codegen/ia32/full-codegen-ia32.cc
 | 
| index 97c6d8e455c655bdaf33e451cded29f4345dab02..add71bc879454a9baad036d0a656f972b7f64dce 100644
 | 
| --- a/src/full-codegen/ia32/full-codegen-ia32.cc
 | 
| +++ b/src/full-codegen/ia32/full-codegen-ia32.cc
 | 
| @@ -1144,11 +1144,8 @@ void FullCodeGenerator::EmitNewClosure(Handle<SharedFunctionInfo> info,
 | 
|    // flag, we need to use the runtime function so that the new function
 | 
|    // we are creating here gets a chance to have its code optimized and
 | 
|    // doesn't just get a copy of the existing unoptimized code.
 | 
| -  if (!FLAG_always_opt &&
 | 
| -      !FLAG_prepare_always_opt &&
 | 
| -      !pretenure &&
 | 
| -      scope()->is_function_scope() &&
 | 
| -      info->num_literals() == 0) {
 | 
| +  if (!FLAG_always_opt && !FLAG_prepare_always_opt && !pretenure &&
 | 
| +      scope()->is_function_scope()) {
 | 
|      FastNewClosureStub stub(isolate(), info->language_mode(), info->kind());
 | 
|      __ mov(ebx, Immediate(info));
 | 
|      __ CallStub(&stub);
 | 
| 
 |