aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Driver/ToolChain.cpp
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2014-12-18 23:07:04 +0000
committerReid Kleckner <reid@kleckner.net>2014-12-18 23:07:04 +0000
commitda0acc816c18d18223af64f10590f298c006d581 (patch)
tree34e57267ca957825819dc7f10414fb8e56c9b76e /clang/lib/Driver/ToolChain.cpp
parent021de66be60cccd95de62ba948d6d5ffecae4720 (diff)
downloadllvm-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.cpp1
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();
}