diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-08-10 00:25:48 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-08-10 00:25:48 +0000 |
commit | ba30bbe4e36a30a274da809a11a42f9cdc168e92 (patch) | |
tree | 4335a2e94f37f168a446c7dc03439d3758838847 /lib/Driver/ToolChains.h | |
parent | 368b76ee98535eec93c487ae4b213fa0598a9eff (diff) |
Run the assembler instead of gcc on Linux.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110635 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/ToolChains.h')
-rw-r--r-- | lib/Driver/ToolChains.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Driver/ToolChains.h b/lib/Driver/ToolChains.h index 700d5fd6c2..e2d72e61dc 100644 --- a/lib/Driver/ToolChains.h +++ b/lib/Driver/ToolChains.h @@ -292,6 +292,8 @@ public: class LLVM_LIBRARY_VISIBILITY Linux : public Generic_GCC { public: Linux(const HostInfo &Host, const llvm::Triple& Triple); + + virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; }; |