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

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

Issue 917383004: [turbofan] Fix control reducer with re-reducing branches. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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/control-reducer.cc ('k') | test/mjsunit/regress/regress-458876.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/graph-visualizer.cc
diff --git a/src/compiler/graph-visualizer.cc b/src/compiler/graph-visualizer.cc
index 3cec026eef4eb1f47fe767cd1430ec0c9c1bc814..42d355fb1dba50a18943b4da4621f43039771a45 100644
--- a/src/compiler/graph-visualizer.cc
+++ b/src/compiler/graph-visualizer.cc
@@ -800,7 +800,7 @@ std::ostream& operator<<(std::ostream& os, const AsRPO& ar) {
if (pop) {
state[n->id()] = kVisited;
stack.pop();
- os << "#" << SafeId(n) << ":" << SafeMnemonic(n) << "(";
+ os << "#" << n->id() << ":" << *n->op() << "(";
int j = 0;
for (Node* const i : n->inputs()) {
if (j++ > 0) os << ", ";
« no previous file with comments | « src/compiler/control-reducer.cc ('k') | test/mjsunit/regress/regress-458876.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698