Skip to content

Commit dd150a9

Browse files
committed
Remove leftover logs
1 parent 1c93b73 commit dd150a9

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

clang/lib/Analysis/FlowSensitive/Models/NullPointerAnalysisModel.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -366,17 +366,9 @@ void matchAddressofExpr(const Expr *expr,
366366
void matchPtrArgFunctionExpr(const CallExpr *fncall,
367367
const MatchFinder::MatchResult &Result,
368368
Environment &Env) {
369-
// Inner storageloc, inner type
370-
fncall->dump();
371-
372369
for (const auto *Arg : fncall->arguments()) {
373-
// WrappedArg->dump();
374-
// const auto *Arg = WrappedArg->IgnoreCasts();
375-
Arg->dump();
376-
377370
// FIXME: Add handling for reference types as arguments
378371
if (Arg->getType()->isPointerType()) {
379-
llvm::errs() << (int)Env.getValue(*Arg)->getKind();
380372
PointerValue *OuterValue = cast_or_null<PointerValue>(
381373
Env.getValue(*Arg));
382374

0 commit comments

Comments
 (0)