diff options
author | Reid Kleckner <reid@kleckner.net> | 2014-12-18 23:07:04 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2014-12-18 23:07:04 +0000 |
commit | da0acc816c18d18223af64f10590f298c006d581 (patch) | |
tree | 34e57267ca957825819dc7f10414fb8e56c9b76e /clang/lib/Driver/ToolChain.cpp | |
parent | 021de66be60cccd95de62ba948d6d5ffecae4720 (diff) | |
download | llvm-da0acc816c18d18223af64f10590f298c006d581.zip llvm-da0acc816c18d18223af64f10590f298c006d581.tar.gz llvm-da0acc816c18d18223af64f10590f298c006d581.tar.bz2 |
Revert "Change -save-temps to emit unoptimized bitcode files."
This reverts commit r224503.
It broke compilation of fortran through the Clang driver. Previously
`clang -c t.f` would invoke `gcc t.f` and `clang -cc1as`, but now it
tries to call `clang -cc1 t.f` which fails for obvious reasons.
llvm-svn: 224546
Diffstat (limited to 'clang/lib/Driver/ToolChain.cpp')
-rw-r--r-- | clang/lib/Driver/ToolChain.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Driver/ToolChain.cpp b/clang/lib/Driver/ToolChain.cpp index 2bcfecf..6734ce7 100644 --- a/clang/lib/Driver/ToolChain.cpp +++ b/clang/lib/Driver/ToolChain.cpp @@ -129,7 +129,6 @@ Tool *ToolChain::getTool(Action::ActionClass AC) const { case Action::AnalyzeJobClass: case Action::MigrateJobClass: case Action::VerifyPCHJobClass: - case Action::BackendJobClass: return getClang(); } |