================ @@ -15609,6 +15661,10 @@ Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D, getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation) Diag(FD->getLocation(), diag::warn_function_def_in_objc_container); + if (Context.hasAnyFunctionEffects()) + if (const auto FX = FD->getFunctionEffects(); !FX.empty()) + maybeAddDeclWithEffects(FD, FX); ---------------- dougsonos wrote:
Not sure if you saw the performance PR where `hasAnyFunctionEffects()` was introduced but it's left me a little paranoid about even just the function call overhead. Possibly a good compromise would be to make `maybeAddDeclWithEffects` inline. https://github.com/llvm/llvm-project/pull/99656 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits