This revision was automatically updated to reflect the committed changes.
donat.nagy marked an inline comment as done.
Closed by commit rG8a5cfdf7851d: [analyzer][NFC] Remove useless class
BuiltinBug (authored by donat.nagy).
Changed prior to commit:
https://reviews.llvm.org/D158855?vs=553498&i
steakhal accepted this revision.
steakhal added a comment.
This revision is now accepted and ready to land.
I haven't checked the details, but it makes sense.
It's reassuring that all the tests pass :D, which is good enough for me.
Thanks for the cleanup!
Repository:
rG LLVM Github Monorepo
donat.nagy marked an inline comment as done.
donat.nagy added inline comments.
Comment at: clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp:27
class BoolAssignmentChecker : public Checker< check::Bind > {
-mutable std::unique_ptr BT;
+mutable std::unique_ptr
xazax.hun added inline comments.
Comment at: clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp:27
class BoolAssignmentChecker : public Checker< check::Bind > {
-mutable std::unique_ptr BT;
+mutable std::unique_ptr BT;
void emitReport(ProgramStateRef stat
donat.nagy added inline comments.
Herald added a subscriber: ormris.
Comment at: clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp:35-36
public Checker {
- mutable std::unique_ptr BT;
+ mutable std::unique_ptr BT;
mutable std::unique_ptr TaintBT;
-
donat.nagy created this revision.
donat.nagy added reviewers: Szelethus, steakhal, gamesh411, NoQ.
Herald added subscribers: manas, ASDenysPetrov, martong, dkrupp,
mikhail.ramalho, a.sidorin, szepet, baloghadamsoftware, xazax.hun.
Herald added a project: All.
donat.nagy requested review of this re