зеркало из https://github.com/microsoft/clang-1.git
Add back bug name to PathDiagnostic.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49139 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
bc896f58c7
Коммит
1c1924525d
|
@ -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);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче