1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[IR] Use llvm::is_contained (NFC)

This commit is contained in:
Kazu Hirata 2020-12-08 19:06:37 -08:00
parent e7c9a10ed2
commit a7ca5fc6a4
2 changed files with 2 additions and 9 deletions

View File

@ -641,10 +641,7 @@ void MDNode::resolveCycles() {
}
static bool hasSelfReference(MDNode *N) {
for (Metadata *MD : N->operands())
if (MD == N)
return true;
return false;
return llvm::is_contained(N->operands(), N);
}
MDNode *MDNode::replaceWithPermanentImpl() {

View File

@ -55,11 +55,7 @@ bool llvm::shouldPrintAfterSomePass() {
static bool shouldPrintBeforeOrAfterPass(StringRef PassID,
ArrayRef<std::string> PassesToPrint) {
for (auto &Pass : PassesToPrint) {
if (Pass == PassID)
return true;
}
return false;
return llvm::is_contained(PassesToPrint, PassID);
}
bool llvm::shouldPrintBeforeAll() { return PrintBeforeAll; }