[llvm] 2583d8e - [CodeGen] Use llvm::is_contained (NFC)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 19 22:09:10 PST 2020
Author: Kazu Hirata
Date: 2020-11-19T22:07:56-08:00
New Revision: 2583d8eb08073d3c1e06b21b1c4216d0ab7a0909
URL: https://github.com/llvm/llvm-project/commit/2583d8eb08073d3c1e06b21b1c4216d0ab7a0909
DIFF: https://github.com/llvm/llvm-project/commit/2583d8eb08073d3c1e06b21b1c4216d0ab7a0909.diff
LOG: [CodeGen] Use llvm::is_contained (NFC)
Added:
Modified:
llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
llvm/lib/CodeGen/MachineBasicBlock.cpp
llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp b/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
index 9eddb8626f60..d4a91302c614 100644
--- a/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
+++ b/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
@@ -198,8 +198,7 @@ static bool rescheduleCanonically(unsigned &PseudoIdempotentInstCount,
if (II->getOperand(i).isReg()) {
if (!Register::isVirtualRegister(II->getOperand(i).getReg()))
- if (llvm::find(PhysRegDefs, II->getOperand(i).getReg()) ==
- PhysRegDefs.end()) {
+ if (!llvm::is_contained(PhysRegDefs, II->getOperand(i).getReg())) {
continue;
}
}
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp
index c203ad1e1108..0278999a8f72 100644
--- a/llvm/lib/CodeGen/MachineBasicBlock.cpp
+++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp
@@ -753,7 +753,7 @@ void MachineBasicBlock::splitSuccessor(MachineBasicBlock *Old,
bool NormalizeSuccProbs) {
succ_iterator OldI = llvm::find(successors(), Old);
assert(OldI != succ_end() && "Old is not a successor of this block!");
- assert(llvm::find(successors(), New) == succ_end() &&
+ assert(!llvm::is_contained(successors(), New) &&
"New is already a successor of this block!");
// Add a new successor with equal probability as the original one. Note
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 7057d4e61fc6..2ae6f1cbec17 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -9255,8 +9255,7 @@ bool SDNode::areOnlyUsersOf(ArrayRef<const SDNode *> Nodes, const SDNode *N) {
bool Seen = false;
for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
SDNode *User = *I;
- if (llvm::any_of(Nodes,
- [&User](const SDNode *Node) { return User == Node; }))
+ if (llvm::is_contained(Nodes, User))
Seen = true;
else
return false;
More information about the llvm-commits
mailing list