Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index d9a9ec49d24bc4bd99a1c20c548ae86509e7dcfa..4a7fdcc24b9fc5dc3fa0422ec07cce0f30fe465a 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -628,8 +628,11 @@ struct PrintGraphPhase { |
fclose(json_file); |
OFStream os(stdout); |
+ os << "-- Graph after " << phase << " -- " << std::endl; |
+ os << AsRPO(*graph); |
+ |
os << "-- " << phase << " graph printed to file " << filename.start() |
- << "\n"; |
+ << std::endl; |
} |
}; |