summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2013-01-25 07:45:25 +0000
committerAndrew Trick <atrick@apple.com>2013-01-25 07:45:25 +0000
commitb36388a1cb2de8de334cf2c178aaff4ebab7499d (patch)
tree78ab78e1556b32931474b0aa0ce36fcb072776de /llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
parent3256d4ff621a14cfbb45f7206e84e5c018042a0a (diff)
downloadbcm5719-llvm-b36388a1cb2de8de334cf2c178aaff4ebab7499d.tar.gz
bcm5719-llvm-b36388a1cb2de8de334cf2c178aaff4ebab7499d.zip
ScheduleDAG: colorize the DOT graph and improve formatting.
llvm-svn: 173431
Diffstat (limited to 'llvm/lib/CodeGen/ScheduleDAGInstrs.cpp')
-rw-r--r--llvm/lib/CodeGen/ScheduleDAGInstrs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp b/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
index f27b970aff1..59e1ca17f67 100644
--- a/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
+++ b/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
@@ -994,7 +994,7 @@ std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
else if (SU == &ExitSU)
oss << "<exit>";
else
- SU->getInstr()->print(oss);
+ SU->getInstr()->print(oss, &TM, /*SkipOpers=*/true);
return oss.str();
}
OpenPOWER on IntegriCloud