[llvm] [Attributor] Pack out arguments into a struct (PR #119267)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 23 19:26:44 PST 2025
================
@@ -3510,6 +3511,12 @@ void Attributor::identifyDefaultAbstractAttributes(Function &F) {
// Every argument with pointer type might be privatizable (or
// promotable)
getOrCreateAAFor<AAPrivatizablePtr>(ArgPos);
+
+ // Every function with pointer argument type can have out arguments.
+ if (!markedAsAAConvertArgument) {
+ getOrCreateAAFor<AAConvertOutArgument>(FPos);
+ markedAsAAConvertArgument = true;
+ }
----------------
arsenm wrote:
Yes. I don't know how aggressive the filters here should try to be, but it could more specifically be there is at least one pointer argument that is writable
https://github.com/llvm/llvm-project/pull/119267
More information about the llvm-commits
mailing list