diff options
author | Artem Dergachev <artem.dergachev@gmail.com> | 2018-07-18 18:44:40 +0000 |
---|---|---|
committer | Artem Dergachev <artem.dergachev@gmail.com> | 2018-07-18 18:44:40 +0000 |
commit | 3a37cb54e02ca07ea0774f2588604feee6e9fba7 (patch) | |
tree | 6db5e52bda9b933ee27c60ac4643e2abe8e9b0b7 /clang | |
parent | 074ccf32ce8d5ab67b7fd569d41c09a611a42486 (diff) | |
download | bcm5719-llvm-3a37cb54e02ca07ea0774f2588604feee6e9fba7.tar.gz bcm5719-llvm-3a37cb54e02ca07ea0774f2588604feee6e9fba7.zip |
[analyzer] Remove a debug print that was accidentally left around.
No functional change intended.
llvm-svn: 337417
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/BugReporter.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/BugReporter.cpp b/clang/lib/StaticAnalyzer/Core/BugReporter.cpp index 30d7edb9c65..096c8e7356b 100644 --- a/clang/lib/StaticAnalyzer/Core/BugReporter.cpp +++ b/clang/lib/StaticAnalyzer/Core/BugReporter.cpp @@ -2562,7 +2562,6 @@ generateVisitorsDiagnostics(BugReport *R, const ExplodedNode *ErrorNode, assert(!LastPiece && "There can only be one final piece in a diagnostic."); LastPiece = std::move(Piece); - llvm::errs() << "Writing to last piece" << "\n"; (*Notes)[ErrorNode].push_back(LastPiece); } } |