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

Unified Diff: src/debug/debug.cc

Issue 1370303004: Distinction between FeedbackVectorICSlot and FeedbackVectorSlot eliminated. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed release builds Created 5 years, 3 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/compiler/js-type-feedback.cc ('k') | src/factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug.cc
diff --git a/src/debug/debug.cc b/src/debug/debug.cc
index 4f23555d28f59c376b13c35071d3ca47a1e3a683..46d66d5ce0dca3e306bfe4504d7cf186e9ab84ea 100644
--- a/src/debug/debug.cc
+++ b/src/debug/debug.cc
@@ -1503,7 +1503,7 @@ bool Debug::EnsureDebugInfo(Handle<SharedFunctionInfo> shared,
// Make sure IC state is clean. This is so that we correctly flood
// accessor pairs when stepping in.
shared->code()->ClearInlineCaches();
- shared->feedback_vector()->ClearICSlots(*shared);
+ shared->ClearTypeFeedbackInfo();
// Create the debug info object.
DCHECK(shared->HasDebugCode());
« no previous file with comments | « src/compiler/js-type-feedback.cc ('k') | src/factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698