vrnithinkumar marked 5 inline comments as done.
vrnithinkumar added inline comments.
Comment at: clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp:130
+llvm::errs() << " (" << ND->getQualifiedNameAsString() << ')';
+ llvm::errs() << " {" << Call.getNumArgs()
vrnithinkumar updated this revision to Diff 273117.
vrnithinkumar added a comment.
Fixing test failures
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82256/new/
https://reviews.llvm.org/D82256
Files:
clang/include/clang/StaticAnalyzer/Checkers/C
Szelethus accepted this revision.
Szelethus added inline comments.
Comment at: clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp:130
+llvm::errs() << " (" << ND->getQualifiedNameAsString() << ')';
+ llvm::errs() << " {" << Call.getNumArgs() << '}';
+ ll
NoQ added a comment.
Hmm, given that you're using ARC, you're probably intending to turn the review
title/summary into a commit message. Let's make it prettier then:
- Commit messages are typically written in imperative mood, eg. "Enabling" ->
"Enable", "Adding"/"Added" -> "Add".
- Abbreviating
vrnithinkumar updated this revision to Diff 272275.
vrnithinkumar marked an inline comment as done.
vrnithinkumar added a comment.
Addressing review comment adding miised new line
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82256/new/
https://rev
vrnithinkumar marked 2 inline comments as done.
vrnithinkumar added inline comments.
Comment at: clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp:586
ExplodedNodeSet dstCallEvaluated;
+ EvalCallOptions CallOpts;
getCheckerManager().runCheckersForEvalCall(dstCallEv
vrnithinkumar updated this revision to Diff 272276.
vrnithinkumar marked an inline comment as done.
vrnithinkumar added a comment.
Fixing wrongly deleted the old commit via arc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82256/new/
https://review
NoQ accepted this revision.
NoQ added a comment.
This revision is now accepted and ready to land.
Fantastic, thank you!
Comment at: clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp:586
ExplodedNodeSet dstCallEvaluated;
+ EvalCallOptions CallOpts;
getCheckerManag
vrnithinkumar marked an inline comment as done.
vrnithinkumar added inline comments.
Comment at:
clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h:100
+/// Hints for figuring out of a call should be inlined during evalCall().
+struct EvalCallOptions {
+ /// Thi