[clang] [CGOpenMPRuntime] Avoid repeated hash lookups (NFC) (PR #107358)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 5 00:00:33 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
@llvm/pr-subscribers-clang-codegen
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/107358.diff
1 Files Affected:
- (modified) clang/lib/CodeGen/CGOpenMPRuntime.cpp (+1-3)
``````````diff
diff --git a/clang/lib/CodeGen/CGOpenMPRuntime.cpp b/clang/lib/CodeGen/CGOpenMPRuntime.cpp
index 3d392d869ee39c..9cf597a65be043 100644
--- a/clang/lib/CodeGen/CGOpenMPRuntime.cpp
+++ b/clang/lib/CodeGen/CGOpenMPRuntime.cpp
@@ -11674,9 +11674,7 @@ CGOpenMPRuntime::LastprivateConditionalRAII::~LastprivateConditionalRAII() {
Address CGOpenMPRuntime::emitLastprivateConditionalInit(CodeGenFunction &CGF,
const VarDecl *VD) {
ASTContext &C = CGM.getContext();
- auto I = LastprivateConditionalToTypes.find(CGF.CurFn);
- if (I == LastprivateConditionalToTypes.end())
- I = LastprivateConditionalToTypes.try_emplace(CGF.CurFn).first;
+ auto I = LastprivateConditionalToTypes.try_emplace(CGF.CurFn).first;
QualType NewType;
const FieldDecl *VDField;
const FieldDecl *FiredField;
``````````
</details>
https://github.com/llvm/llvm-project/pull/107358
More information about the cfe-commits
mailing list