================
@@ -2282,6 +2308,9 @@ void 
ThreadSafetyAnalyzer::runAnalysis(AnalysisDeclContext &AC) {
   const NamedDecl *D = walker.getDecl();
   CurrentFunction = dyn_cast<FunctionDecl>(D);
 
+  if (isa<FunctionDecl, ObjCMethodDecl>(D))
----------------
aaronpuchert wrote:

The way I understand this, `isa<FunctionDecl, ObjCMethodDecl>` checks if the 
argument is a `FunctionDecl` or `ObjCMethodDecl`, and that is always true. The 
`dyn_cast` is to `FunctionDecl` specifically.

https://github.com/llvm/llvm-project/pull/67520
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to