[clang] [BoundsSafety][APINotes] Upstream API notes format for bounds-safety function parameters (PR #185257)
Connector Switch via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 10 09:15:00 PDT 2026
================
@@ -0,0 +1,5 @@
+void asdf_counted(int *buf, int len);
+void asdf_sized(int *buf, int size);
+void asdf_counted_n(int *buf, int len);
+void asdf_sized_n(int *buf, int size);
+void asdf_ended(int *buf, int *end);
----------------
c8ef wrote:
Since our current implementation is still just a skeleton, this subset might be sufficient to cover the five cases. Once we’re able to generate more meaningful test text, I’ll fill in the rest.
https://github.com/llvm/llvm-project/pull/185257
More information about the cfe-commits
mailing list