forked from OSchip/llvm-project
Replace last DEBUG occurrence with LLVM_DEBUG.
llvm-svn: 333083
This commit is contained in:
parent
9581c331d2
commit
c9fed1353a
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue