NoQ marked 2 inline comments as done. NoQ added inline comments.
================ Comment at: test/Analysis/CFContainers.mm:178 void TestGetCount(CFArrayRef A, CFIndex sIndex) { - CFIndex sCount = CFArrayGetCount(A); - if (sCount > sIndex) + CFIndex sCount = CFArrayGetCount(A); // expected-note{{'sCount' initialized here}} + if (sCount > sIndex) // expected-note{{Assuming 'sCount' is <= 'sIndex'}} ---------------- This is a new note. ================ Comment at: test/Analysis/CFContainers.mm:240 void TestCFMutableArrayRefEscapeViaImmutableArgument(CFMutableArrayRef a) { - CFIndex aLen = CFArrayGetCount(a); + CFIndex aLen = CFArrayGetCount(a); // expected-note{{'aLen' initialized here}} ArrayRefEscape(a); ---------------- This is a new note. Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D55458/new/ https://reviews.llvm.org/D55458 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits