mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-22 13:29:44 +00:00
-view-misched-dags, better pruning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189994 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ee5fd9cf10
commit
da9f441854
@ -3010,7 +3010,7 @@ struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static bool isNodeHidden(const SUnit *Node) {
|
static bool isNodeHidden(const SUnit *Node) {
|
||||||
return (Node->NumPreds > 10 || Node->NumSuccs > 10);
|
return (Node->Preds.size() > 10 || Node->Succs.size() > 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool hasNodeAddressLabel(const SUnit *Node,
|
static bool hasNodeAddressLabel(const SUnit *Node,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user