forked from OSchip/llvm-project
parent
3a0702e631
commit
e4c029e7aa
|
@ -64,7 +64,6 @@ void BugReporter::GeneratePathDiagnostic(PathDiagnostic& PD, ASTContext& Ctx,
|
|||
const BugDescription& B,
|
||||
ExplodedGraph<GRExprEngine>& G,
|
||||
ExplodedNode<ValueState>* N) {
|
||||
|
||||
PD.push_back(B.getEndPath(Ctx, N));
|
||||
|
||||
SourceManager& SMgr = Ctx.getSourceManager();
|
||||
|
@ -248,7 +247,7 @@ void BugReporter::EmitPathWarning(Diagnostic& Diag,
|
|||
if (IsCached(N))
|
||||
return;
|
||||
|
||||
PathDiagnostic D;
|
||||
PathDiagnostic D(B.getName());
|
||||
GeneratePathDiagnostic(D, Ctx, B, G, N);
|
||||
PDC->HandlePathDiagnostic(D);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue