[clang] [llvm] [FunctionAttrs] Add support for nofree argument inference (PR #201591)

Steffen Larsen via cfe-commits cfe-commits at lists.llvm.org
Thu Jun 4 23:01:57 PDT 2026


================
@@ -853,31 +854,47 @@ struct GraphTraits<ArgumentGraph *> : public GraphTraits<ArgumentGraphNode *> {
   static ChildIteratorType nodes_end(ArgumentGraph *AG) { return AG->end(); }
 };
 
+struct ArgProperties {
----------------
steffenlarsen wrote:

The name is a little generic. If we always expect it to track access (if you can call freeing "access") then maybe something like `ArgAccessProperties`?

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


More information about the cfe-commits mailing list