Index: clang/lib/Driver/Driver.cpp =================================================================== --- clang/lib/Driver/Driver.cpp +++ clang/lib/Driver/Driver.cpp @@ -1266,10 +1266,6 @@ // Print the version of the compiler. PrintVersion(C, llvm::errs()); - Diag(clang::diag::note_drv_command_failed_diag_msg) - << "PLEASE submit a bug report to " BUG_REPORT_URL " and include the " - "crash backtrace, preprocessed source, and associated run script."; - // Suppress driver output and emit preprocessor output to temp file. Mode = CPPMode; CCGenDiagnostics = true; Index: llvm/lib/Support/PrettyStackTrace.cpp =================================================================== --- llvm/lib/Support/PrettyStackTrace.cpp +++ llvm/lib/Support/PrettyStackTrace.cpp @@ -145,6 +145,8 @@ /// This callback is run if a fatal signal is delivered to the process, it /// prints the pretty stack trace. static void CrashHandler(void *) { + errs() << "PLEASE submit a bug report to " BUG_REPORT_URL + " and include the crash backtrace\n"; #ifndef __APPLE__ // On non-apple systems, just emit the crash stack trace to stderr. PrintCurStackTrace(errs());