Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Unified Diff: src/debug/liveedit.cc

Issue 2170743003: [api] Introduce fast instantiations cache (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixing uint issue under windows Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/contexts.h ('k') | src/heap/object-stats.cc » ('j') | src/objects.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/liveedit.cc
diff --git a/src/debug/liveedit.cc b/src/debug/liveedit.cc
index 6df74565c01a623c44c22e47c2afe06c219183c1..488032ad0dda941ff87627610a8a7069616ff7e1 100644
--- a/src/debug/liveedit.cc
+++ b/src/debug/liveedit.cc
@@ -882,7 +882,7 @@ class LiteralFixer {
Handle<TypeFeedbackVector> vector =
TypeFeedbackVector::New(isolate, feedback_metadata);
Handle<LiteralsArray> new_literals =
- LiteralsArray::New(isolate, vector, new_literal_count, TENURED);
+ LiteralsArray::New(isolate, vector, new_literal_count);
fun->set_literals(*new_literals);
}
« no previous file with comments | « src/contexts.h ('k') | src/heap/object-stats.cc » ('j') | src/objects.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698