Replace last DEBUG occurrence with LLVM_DEBUG.

llvm-svn: 333083
This commit is contained in:
Nicola Zaghen 2018-05-23 13:57:48 +00:00
parent 9581c331d2
commit c9fed1353a
1 changed files with 5 additions and 5 deletions

View File

@ -1004,11 +1004,11 @@ private:
Scores.symbolScore =
Scores.filterScore ? Scores.finalScore / Scores.filterScore : QualScore;
DEBUG(llvm::dbgs() << "CodeComplete: " << C.Name
<< (IndexResult ? " (index)" : "")
<< (SemaResult ? " (sema)" : "") << " = "
<< Scores.finalScore << "\n"
<< Quality << Relevance << "\n");
LLVM_DEBUG(llvm::dbgs()
<< "CodeComplete: " << C.Name << (IndexResult ? " (index)" : "")
<< (SemaResult ? " (sema)" : "") << " = " << Scores.finalScore
<< "\n"
<< Quality << Relevance << "\n");
NSema += bool(SemaResult);
NIndex += bool(IndexResult);