[clang] [clang][TSA] Make RequiresCapability a DeclOrType attribute (PR #67095)
Timm Baeder via cfe-commits
cfe-commits at lists.llvm.org
Wed Apr 23 01:24:42 PDT 2025
================
@@ -136,6 +136,17 @@ int main(void) {
// Cleanup happens automatically -> no warning.
}
+ /// Function pointers
+ {
+ int __attribute__((requires_capability(&mu1))) (*function_ptr)(int) = Foo_fun1;
+
+ function_ptr(5); // expected-warning {{calling function 'function_ptr' requires holding mutex 'mu1'}}
+
+ mutex_exclusive_lock(&mu1);
+ int five = function_ptr(5);
+ mutex_exclusive_unlock(&mu1);
+ }
+
----------------
tbaederr wrote:
There are no such diagnostics when converting between function pointers. Are there supposed to be any, without adding special handling for this? I quickly checked and `noreturn` has the same behavior.
https://github.com/llvm/llvm-project/pull/67095
More information about the cfe-commits
mailing list