diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-10-11 22:02:06 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-10-11 22:02:06 +0000 |
commit | 4e0f15a4a247abfcc53563815ce799d2ad45c786 (patch) | |
tree | 5a2f800be5b5e6ad6f7a679de3c14e28f425343e /clang/lib/Driver/Tools.cpp | |
parent | d42340ecfdcd378f4e6c5f8968a7e5c194b10d6b (diff) | |
download | bcm5719-llvm-4e0f15a4a247abfcc53563815ce799d2ad45c786.tar.gz bcm5719-llvm-4e0f15a4a247abfcc53563815ce799d2ad45c786.zip |
Eliminate -fdiagnostics-binary and all of the infrastructure for
emitting diagnostics in a binary form to be consumed by libclang,
since libclang no longer does any of its work out-of-process, making
this code dead. Besides, this stuff never worked at 100% anyway.
llvm-svn: 116250
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index 31f9c08eeb4..5ea1cbb3579 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -1418,8 +1418,6 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA, options::OPT_fno_diagnostics_fixit_info)) CmdArgs.push_back("-fno-diagnostics-fixit-info"); - Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_binary); - // Enable -fdiagnostics-show-option by default. if (Args.hasFlag(options::OPT_fdiagnostics_show_option, options::OPT_fno_diagnostics_show_option)) |