diff options
author | James Y Knight <jyknight@google.com> | 2015-10-27 23:09:03 +0000 |
---|---|---|
committer | James Y Knight <jyknight@google.com> | 2015-10-27 23:09:03 +0000 |
commit | 14eedd189b4a91a72e96895adeb647860784395a (patch) | |
tree | db136f9928d9d69a77b6c703ac49e929e51522f9 /llvm/lib/CodeGen/MachineScheduler.cpp | |
parent | 128a9760e0c191b1d7b5e64cee0b32497639e4b1 (diff) | |
download | bcm5719-llvm-14eedd189b4a91a72e96895adeb647860784395a.tar.gz bcm5719-llvm-14eedd189b4a91a72e96895adeb647860784395a.zip |
Make the SelectionDAG graph printer use SDNode::PersistentId labels.
r248010 changed the -debug output to use short ids, but did not
similarly modify the graph printer. Change to be consistent, for ease of
cross-reference.
llvm-svn: 251465
Diffstat (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineScheduler.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp index ee2dbc86bf1..ae92445bfd9 100644 --- a/llvm/lib/CodeGen/MachineScheduler.cpp +++ b/llvm/lib/CodeGen/MachineScheduler.cpp @@ -3310,11 +3310,6 @@ struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits { || Node->Succs.size() > ViewMISchedCutoff); } - static bool hasNodeAddressLabel(const SUnit *Node, - const ScheduleDAG *Graph) { - return false; - } - /// If you want to override the dot attributes printed for a particular /// edge, override this method. static std::string getEdgeAttributes(const SUnit *Node, |