[PATCH] D77845: [analyzer][CallAndMessage][NFC] Change old callbacks to rely on CallEvent
Kristóf Umann via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 20 06:25:30 PDT 2020
Szelethus marked an inline comment as done.
Szelethus added inline comments.
================
Comment at: clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp:113-114
const CheckerContext &C) {
- assert(Call.getDecl());
+ if (!Call.getDecl())
+ return None;
const FunctionDecl *FDecl = Call.getDecl()->getAsFunction();
----------------
Well, rG878194414107e94600de31a11be09a347fb2598b got this :)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77845/new/
https://reviews.llvm.org/D77845
More information about the cfe-commits
mailing list