[llvm] [Bitcode] Avoid repeated hash lookups (NFC) (PR #128824)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 26 00:33:34 PST 2025


================
@@ -539,9 +539,10 @@ class MetadataLoader::MetadataLoaderImpl {
       if (!Visited.insert(S).second)
         break;
     }
-    ParentSubprogram[InitialScope] = llvm::dyn_cast_or_null<DISubprogram>(S);
 
-    return ParentSubprogram[InitialScope];
+    auto &PS = ParentSubprogram[InitialScope];
+    PS = llvm::dyn_cast_or_null<DISubprogram>(S);
+    return PS;
----------------
nikic wrote:

I'd either directly return the assignment here, or use a local variable for `llvm::dyn_cast_or_null<DISubprogram>(S)` (or just repeat the expression).

https://github.com/llvm/llvm-project/pull/128824


More information about the llvm-commits mailing list