From 37a12af0af8e5efc71efd319cc6abf58dc47f8da Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Wed, 23 May 2012 21:38:47 +0000 Subject: [PATCH] [driver] Have the crash diagnostics print the clang version information. rdar://11518308 llvm-svn: 157346 --- clang/lib/Driver/Driver.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp index 9e3ba84..9a73da6 100644 --- a/clang/lib/Driver/Driver.cpp +++ b/clang/lib/Driver/Driver.cpp @@ -386,6 +386,9 @@ void Driver::generateCompilationDiagnostics(Compilation &C, << "Please submit a bug report to " BUG_REPORT_URL " and include command" " line arguments and all diagnostic information."; + // Print the version of the compiler. + PrintVersion(C, llvm::errs()); + // Suppress driver output and emit preprocessor output to temp file. CCCIsCPP = true; CCGenDiagnostics = true; -- 2.7.4