Index: src/runtime/runtime-interpreter.cc |
diff --git a/src/runtime/runtime-interpreter.cc b/src/runtime/runtime-interpreter.cc |
index 3882fe7f6af9fc2aeaa031960b98c201d8d05a08..9f3897bf64f83ef32e39e401c8d7fc43d2b08256 100644 |
--- a/src/runtime/runtime-interpreter.cc |
+++ b/src/runtime/runtime-interpreter.cc |
@@ -28,9 +28,10 @@ RUNTIME_FUNCTION(Runtime_InterpreterNewClosure) { |
CONVERT_SMI_ARG_CHECKED(pretenured_flag, 3); |
Handle<Context> context(isolate->context(), isolate); |
FeedbackSlot slot = FeedbackVector::ToSlot(index); |
- Handle<Cell> literals(Cell::cast(vector->Get(slot)), isolate); |
+ Handle<Cell> vector_cell(Cell::cast(vector->Get(slot)), isolate); |
return *isolate->factory()->NewFunctionFromSharedFunctionInfo( |
- shared, context, literals, static_cast<PretenureFlag>(pretenured_flag)); |
+ shared, context, vector_cell, |
+ static_cast<PretenureFlag>(pretenured_flag)); |
} |
namespace { |