diff options
author | Bardia Mahjour <bmahjour@ca.ibm.com> | 2020-12-14 16:54:20 -0500 |
---|---|---|
committer | Bardia Mahjour <bmahjour@ca.ibm.com> | 2020-12-14 16:54:20 -0500 |
commit | a29ecca7819a6ed4250d3689b12b1f664bb790d7 (patch) | |
tree | ec51af2f4d8799cf759f53639bf3888073d4e1a4 /llvm/lib/CodeGen/MachineScheduler.cpp | |
parent | 0cf7e4b252fe1458fddb8e3dbfcae43450e9c04c (diff) | |
download | llvm-a29ecca7819a6ed4250d3689b12b1f664bb790d7.zip llvm-a29ecca7819a6ed4250d3689b12b1f664bb790d7.tar.gz llvm-a29ecca7819a6ed4250d3689b12b1f664bb790d7.tar.bz2 |
Revert "[DDG] Data Dependence Graph - DOT printer"
This reverts commit fd4a10732c8bd646ccc621c0a9af512be252f33a, to
investigate the failure on windows: http://lab.llvm.org:8011/#/builders/127/builds/3274
Diffstat (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineScheduler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp index 8d51bb2..5843f84 100644 --- a/llvm/lib/CodeGen/MachineScheduler.cpp +++ b/llvm/lib/CodeGen/MachineScheduler.cpp @@ -3836,7 +3836,7 @@ struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits { return true; } - static bool isNodeHidden(const SUnit *Node, const ScheduleDAG *G) { + static bool isNodeHidden(const SUnit *Node) { if (ViewMISchedCutoff == 0) return false; return (Node->Preds.size() > ViewMISchedCutoff |