[llvm] [IPO] Avoid repeated hash lookups (NFC) (PR #131720)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 22:00:57 PDT 2025


================
@@ -266,7 +266,7 @@ doPromotion(Function *F, FunctionAnalysisManager &FAM,
           ArgAttrVec.push_back(AttributeSet());
         }
       } else {
-        assert(ArgsToPromote.count(&*I) && I->use_empty());
+        assert(ArgIt != ArgsToPromote.end() && I->use_empty());
----------------
kazutakahirata wrote:

Fixed in the latest iteration.  Thanks!

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


More information about the llvm-commits mailing list