diff options
-rw-r--r-- | tools/CIndex/CIndex.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/CIndex/CIndex.cpp b/tools/CIndex/CIndex.cpp index de835475a6..f07b94fc51 100644 --- a/tools/CIndex/CIndex.cpp +++ b/tools/CIndex/CIndex.cpp @@ -104,7 +104,8 @@ public: { { llvm::raw_svector_ostream Out(CrashString); - Out << "ClangCIndex [createTranslationUnitFromSourceFile]: clang"; + Out << "ClangCIndex [" << getClangFullVersion() << "]" + << "[createTranslationUnitFromSourceFile]: clang"; for (llvm::SmallVectorImpl<const char*>::iterator I=Args.begin(), E=Args.end(); I!=E; ++I) Out << ' ' << *I; |