xazax.hun added inline comments.
================ Comment at: clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp:44 // Uninitialized value used for the mutex? - if (V.getAs<UndefinedVal>()) { + if (V.isa<UndefinedVal>()) { if (ExplodedNode *N = C.generateErrorNode()) { ---------------- Is there a difference between `isa<UndefinedVal>` vs `IsUndef`? I think we should standardize on one of them (or potentially remove `IsUndef` and the like? Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D125749/new/ https://reviews.llvm.org/D125749 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits