diff options
Diffstat (limited to 'tools/libclang/CIndexCodeCompletion.cpp')
-rw-r--r-- | tools/libclang/CIndexCodeCompletion.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/libclang/CIndexCodeCompletion.cpp b/tools/libclang/CIndexCodeCompletion.cpp index 790f32fbda..c0a072760e 100644 --- a/tools/libclang/CIndexCodeCompletion.cpp +++ b/tools/libclang/CIndexCodeCompletion.cpp @@ -283,8 +283,8 @@ CXCodeCompleteResults *clang_codeComplete(CXIndex CIdx, if (getenv("LIBCLANG_TIMING")) { llvm::SmallString<128> TimerName; llvm::raw_svector_ostream TimerNameOut(TimerName); - TimerNameOut << "Code completion @ " << complete_filename << ":" - << complete_line << ":" << complete_column; + TimerNameOut << "Code completion (out-of-process) @ " << complete_filename + << ":" << complete_line << ":" << complete_column; CCTimer.reset(new llvm::NamedRegionTimer(TimerNameOut.str())); } |