balazske added inline comments.
================ Comment at: clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp:838 + Result += getArgDesc(ArgN); + Result += DK == Violation ? " should not be zero" : " is not zero"; + return Result.c_str(); ---------------- Szelethus wrote: > balazske wrote: > > Szelethus wrote: > > > I don't mean to make you test every single `Case` or `ArgumentConstraint` > > > you added, but `NotZeroConstraint` is brand new, and is not tested > > > anywhere. > > This new class is probably not needed at all. It is always possible to use > > `ReturnValueCondition(WithinRange, SingleValue(0))` or similar for nonzero > > cases. > Convenience is a good enough reason. Please test this before commiting. There was no exact test for the return value condition. A following test function can be added: ``` addToFunctionSummaryMap( "__test_return_note", Signature(ArgTypes{}, RetType{IntTy}), Summary(EvalCallAsPure) .Case({ReturnValueCondition(WithinRange, SingleValue(0))}, ErrnoIrrelevant, "Test return 0") .Case({ReturnValueCondition(WithinRange, SingleValue(1))}, ErrnoIrrelevant, "Test return 1") ); ``` And add this to std-c-library-functions-arg-constraints-note-tags.cpp: ``` int __test_return_note(); int test_return_constraint_note(int y) { int x = __test_return_note(); // expected-note{{Test return 0}} \ // expected-note{{'x' initialized here}} return y / x; // expected-warning{{Division by zero}} \ // expected-note{{Division by zero}} } ``` Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D140387/new/ https://reviews.llvm.org/D140387 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits