Index: src/compiler/js-typed-lowering.cc |
diff --git a/src/compiler/js-typed-lowering.cc b/src/compiler/js-typed-lowering.cc |
index a31aa0070c678217d1e4051170d21c7e88f5e217..d5c8956dcda2a3ef7a727ff22bb6ac8ae600713a 100644 |
--- a/src/compiler/js-typed-lowering.cc |
+++ b/src/compiler/js-typed-lowering.cc |
@@ -1819,8 +1819,8 @@ Reduction JSTypedLowering::ReduceJSCreateClosure(Node* node) { |
Handle<SharedFunctionInfo> shared = p.shared_info(); |
// Use the FastNewClosureStub that allocates in new space only for nested |
- // functions that don't need literals cloning. |
- if (p.pretenure() == NOT_TENURED && shared->num_literals() == 0) { |
+ // functions that don't need pretenuring. |
+ if (p.pretenure() == NOT_TENURED) { |
Isolate* isolate = jsgraph()->isolate(); |
Callable callable = CodeFactory::FastNewClosure( |
isolate, shared->language_mode(), shared->kind()); |