diff options
author | Kazu Hirata <kazu@google.com> | 2021-01-14 20:30:34 -0800 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2021-01-14 20:30:34 -0800 |
commit | 7dc3575ef2dc85d92aa3ad916d0eb73a0aa088c9 (patch) | |
tree | 9f375e09afdc1fb4dfb84b88c761a320263c6321 /llvm/lib/CodeGen/MachinePipeliner.cpp | |
parent | 2efcbe24a75b2a9ff6d59d242f560dca96e5f7e0 (diff) | |
download | llvm-7dc3575ef2dc85d92aa3ad916d0eb73a0aa088c9.zip llvm-7dc3575ef2dc85d92aa3ad916d0eb73a0aa088c9.tar.gz llvm-7dc3575ef2dc85d92aa3ad916d0eb73a0aa088c9.tar.bz2 |
[llvm] Remove redundant return and continue statements (NFC)
Identified with readability-redundant-control-flow.
Diffstat (limited to 'llvm/lib/CodeGen/MachinePipeliner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachinePipeliner.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachinePipeliner.cpp b/llvm/lib/CodeGen/MachinePipeliner.cpp index 9564192..d0fe29f 100644 --- a/llvm/lib/CodeGen/MachinePipeliner.cpp +++ b/llvm/lib/CodeGen/MachinePipeliner.cpp @@ -1751,7 +1751,6 @@ void SwingSchedulerDAG::checkNodeSets(NodeSetType &NodeSets) { } NodeSets.clear(); LLVM_DEBUG(dbgs() << "Clear recurrence node-sets\n"); - return; } /// Add the nodes that do not belong to a recurrence set into groups |