[llvm] [RISCV] Use llvm::is_contained (NFC) (PR #141372)
via llvm-commits
llvm-commits at lists.llvm.org
Sat May 24 13:42:43 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-risc-v
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/141372.diff
1 Files Affected:
- (modified) llvm/lib/Target/RISCV/RISCVFrameLowering.cpp (+5-11)
``````````diff
diff --git a/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp b/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
index 470ebcbc83aff..59d99e613c0f4 100644
--- a/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
@@ -573,16 +573,12 @@ getPushOrLibCallsSavedInfo(const MachineFunction &MF,
// `QC.CM.PUSH(FP)`. In these cases, prioritise the CFI info that points
// to the versions saved by `QC.C.MIENTER(.NEST)` which is what FP
// unwinding would use.
- const auto *FII = llvm::find_if(FixedCSRFIQCIInterruptMap, [&](auto P) {
- return P.first == CS.getReg();
- });
- if (FII != std::end(FixedCSRFIQCIInterruptMap))
+ if (llvm::is_contained(llvm::make_first_range(FixedCSRFIQCIInterruptMap),
+ CS.getReg()))
continue;
}
- const auto *FII = llvm::find_if(
- FixedCSRFIMap, [&](MCPhysReg P) { return P == CS.getReg(); });
- if (FII != std::end(FixedCSRFIMap))
+ if (llvm::is_contained(FixedCSRFIMap, CS.getReg()))
PushOrLibCallsCSI.push_back(CS);
}
@@ -599,10 +595,8 @@ getQCISavedInfo(const MachineFunction &MF,
return QCIInterruptCSI;
for (const auto &CS : CSI) {
- const auto *FII = llvm::find_if(FixedCSRFIQCIInterruptMap, [&](auto P) {
- return P.first == CS.getReg();
- });
- if (FII != std::end(FixedCSRFIQCIInterruptMap))
+ if (llvm::is_contained(llvm::make_first_range(FixedCSRFIQCIInterruptMap),
+ CS.getReg()))
QCIInterruptCSI.push_back(CS);
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/141372
More information about the llvm-commits
mailing list