diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-11-23 16:40:57 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-11-23 16:40:57 +0000 |
| commit | edaa444bda3fdfdf03a25ccbce4aa040bb6cccd0 (patch) | |
| tree | d8085351290157422e14dde0b3575396287c5a90 /clang/lib/Driver/Tools.cpp | |
| parent | 40bc7466a84ffbf5f5e900fb6fe69775809f57ab (diff) | |
| download | bcm5719-llvm-edaa444bda3fdfdf03a25ccbce4aa040bb6cccd0.tar.gz bcm5719-llvm-edaa444bda3fdfdf03a25ccbce4aa040bb6cccd0.zip | |
Don't use the gcc driver for assembling.
Clang knows how to use the gnu assembler directly from doing so on linux and
hurd. The existing support worked out of the box on cygwin and mingw and I was
able to bootstrap clang with it in both systems (with pending patches for the
new mingw abi, but that is independent of the assembler).
llvm-svn: 195554
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
| -rw-r--r-- | clang/lib/Driver/Tools.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index bf35463066d..2742332d668 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -4285,11 +4285,6 @@ void gcc::Compile::RenderExtraToolArgs(const JobAction &JA, } } -void gcc::Assemble::RenderExtraToolArgs(const JobAction &JA, - ArgStringList &CmdArgs) const { - CmdArgs.push_back("-c"); -} - void gcc::Link::RenderExtraToolArgs(const JobAction &JA, ArgStringList &CmdArgs) const { // The types are (hopefully) good enough. |

