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/Action.cpp | |
parent | 021de66be60cccd95de62ba948d6d5ffecae4720 (diff) | |
download | bcm5719-llvm-da0acc816c18d18223af64f10590f298c006d581.tar.gz bcm5719-llvm-da0acc816c18d18223af64f10590f298c006d581.zip |
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/Action.cpp')
-rw-r--r-- | clang/lib/Driver/Action.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/lib/Driver/Action.cpp b/clang/lib/Driver/Action.cpp index 360dbeecabf..d4f339d376d 100644 --- a/clang/lib/Driver/Action.cpp +++ b/clang/lib/Driver/Action.cpp @@ -29,7 +29,6 @@ const char *Action::getClassName(ActionClass AC) { case AnalyzeJobClass: return "analyzer"; case MigrateJobClass: return "migrator"; case CompileJobClass: return "compiler"; - case BackendJobClass: return "backend"; case AssembleJobClass: return "assembler"; case LinkJobClass: return "linker"; case LipoJobClass: return "lipo"; @@ -93,12 +92,6 @@ CompileJobAction::CompileJobAction(std::unique_ptr<Action> Input, types::ID OutputType) : JobAction(CompileJobClass, std::move(Input), OutputType) {} -void BackendJobAction::anchor() {} - -BackendJobAction::BackendJobAction(std::unique_ptr<Action> Input, - types::ID OutputType) - : JobAction(BackendJobClass, std::move(Input), OutputType) {} - void AssembleJobAction::anchor() {} AssembleJobAction::AssembleJobAction(std::unique_ptr<Action> Input, |