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

Unified Diff: src/compiler/graph-trimmer.cc

Issue 2123283006: [turbofan] Renamed tracing flags for TurboFan reducers and graph trimmer (Closed) Base URL: https://chromium.googlesource.com/v8/v8@master
Patch Set: Renamed tracing flags for TurboFan reducers and graph trimmer 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/compiler/graph-reducer.cc ('k') | src/flag-definitions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/graph-trimmer.cc
diff --git a/src/compiler/graph-trimmer.cc b/src/compiler/graph-trimmer.cc
index 75071c68b3b5cf1163822edad9aa5f7ca9babaa5..74626fe67fabc10231b043089f0cd08a4b8054cf 100644
--- a/src/compiler/graph-trimmer.cc
+++ b/src/compiler/graph-trimmer.cc
@@ -33,7 +33,7 @@ void GraphTrimmer::TrimGraph() {
for (Edge edge : live->use_edges()) {
Node* const user = edge.from();
if (!IsLive(user)) {
- if (FLAG_trace_turbo_reduction) {
+ if (FLAG_trace_turbo_trimming) {
OFStream os(stdout);
os << "DeadLink: " << *user << "(" << edge.index() << ") -> " << *live
<< std::endl;
« no previous file with comments | « src/compiler/graph-reducer.cc ('k') | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698