diff options
author | Thomas Schwinge <thomas@schwinge.name> | 2013-03-28 19:04:25 +0000 |
---|---|---|
committer | Thomas Schwinge <thomas@schwinge.name> | 2013-03-28 19:04:25 +0000 |
commit | 4e555267374e0a5822048ea4bac6d2bf199858bc (patch) | |
tree | e9ce7be5b34b142a23ff788a7bca1040e2af08e1 /clang/lib/Driver/Tools.h | |
parent | 6d94da0068e06004524bea1ce9a336fb1467fc58 (diff) | |
download | bcm5719-llvm-4e555267374e0a5822048ea4bac6d2bf199858bc.tar.gz bcm5719-llvm-4e555267374e0a5822048ea4bac6d2bf199858bc.zip |
Rename clang::driver::tools::linuxtools to clang::driver::tools::gnutools.
This is about the GNU Binutils' assembler and linker, so reflect that in the
name.
llvm-svn: 178272
Diffstat (limited to 'clang/lib/Driver/Tools.h')
-rw-r--r-- | clang/lib/Driver/Tools.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/clang/lib/Driver/Tools.h b/clang/lib/Driver/Tools.h index 846c8340348..0d215ea3ccf 100644 --- a/clang/lib/Driver/Tools.h +++ b/clang/lib/Driver/Tools.h @@ -427,12 +427,11 @@ namespace netbsd { }; } // end namespace netbsd - /// linux -- Directly call GNU Binutils assembler and linker -namespace linuxtools { + /// Directly call GNU Binutils' assembler and linker. +namespace gnutools { class LLVM_LIBRARY_VISIBILITY Assemble : public Tool { public: - Assemble(const ToolChain &TC) : Tool("linux::Assemble", "assembler", - TC) {} + Assemble(const ToolChain &TC) : Tool("GNU::Assemble", "assembler", TC) {} virtual bool hasIntegratedCPP() const { return false; } @@ -444,7 +443,7 @@ namespace linuxtools { }; class LLVM_LIBRARY_VISIBILITY Link : public Tool { public: - Link(const ToolChain &TC) : Tool("linux::Link", "linker", TC) {} + Link(const ToolChain &TC) : Tool("GNU::Link", "linker", TC) {} virtual bool hasIntegratedCPP() const { return false; } virtual bool isLinkJob() const { return true; } |