[llvm] [ARM] Avoid repeated hash lookups (NFC) (PR #128994)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 20:37:13 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-arm
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/128994.diff
1 Files Affected:
- (modified) llvm/lib/Target/ARM/ARMISelLowering.cpp (+3-2)
``````````diff
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp
index c7ed73d0e95f7..e3dc337bd0843 100644
--- a/llvm/lib/Target/ARM/ARMISelLowering.cpp
+++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp
@@ -2731,8 +2731,9 @@ ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
SDValue ByValSrc;
bool NeedsStackCopy;
- if (ByValTemporaries.contains(realArgIdx)) {
- ByValSrc = ByValTemporaries[realArgIdx];
+ if (auto It = ByValTemporaries.find(realArgIdx);
+ It != ByValTemporaries.end()) {
+ ByValSrc = It->second;
NeedsStackCopy = true;
} else {
ByValSrc = Arg;
``````````
</details>
https://github.com/llvm/llvm-project/pull/128994
More information about the llvm-commits
mailing list