From 2639ac628cff5dedb4fa60169082b2a1a9dd8694 Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Wed, 22 Feb 2012 00:30:39 +0000 Subject: [PATCH] Provide a way to disable auto-generation of preprocessed files during clang crash. This can speedup the process of generating a delta reduced test case. rdar://10905465 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151109 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Driver/Options.td | 1 + lib/Driver/Driver.cpp | 3 +++ 2 files changed, 4 insertions(+) diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td index e3bff60e8c..e9c679e179 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -292,6 +292,7 @@ def fconstant_string_class_EQ : Joined<"-fconstant-string-class=">, Group, Group, Flags<[NoArgumentUnused]>; def fcreate_profile : Flag<"-fcreate-profile">, Group; def fcxx_exceptions: Flag<"-fcxx-exceptions">, Group; def fcxx_modules : Flag <"-fcxx-modules">, Group, Flags<[NoForward]>; diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index da1a40d1e6..f9e5d82c02 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -363,6 +363,9 @@ Compilation *Driver::BuildCompilation(ArrayRef ArgList) { // diagnostic information to a bug report. void Driver::generateCompilationDiagnostics(Compilation &C, const Command *FailingCommand) { + if (C.getArgs().hasArg(options::OPT_fno_crash_diagnostics)) + return; + Diag(clang::diag::note_drv_command_failed_diag_msg) << "Please submit a bug report to " BUG_REPORT_URL " and include command" " line arguments and all diagnostic information."; -- 2.40.0