diff options
author | Douglas Katzman <dougk@google.com> | 2015-06-29 18:42:16 +0000 |
---|---|---|
committer | Douglas Katzman <dougk@google.com> | 2015-06-29 18:42:16 +0000 |
commit | 750cfc57117dc509204e2ae3f14e99b4b51ae88b (patch) | |
tree | 054e7d45c47b5d6dcffd8fcf5183d038c168569f /clang/lib/Driver/Tools.cpp | |
parent | db9875f1b8c3ed0bcc2e0d7a41650c3fe2917d35 (diff) | |
download | llvm-750cfc57117dc509204e2ae3f14e99b4b51ae88b.zip llvm-750cfc57117dc509204e2ae3f14e99b4b51ae88b.tar.gz llvm-750cfc57117dc509204e2ae3f14e99b4b51ae88b.tar.bz2 |
Comment fixes. NFC.
- Hexagon options were physically next to to ones that had a
preceding comment saying "Double dash options", which they aren't.
- The 'ld' tool classes are named Linker, not Link.
llvm-svn: 240980
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index 1b990cf..0299b7a 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -8129,10 +8129,10 @@ void nacltools::AssemblerARM::ConstructJob(Compilation &C, const JobAction &JA, LinkingOutput); } -// This is quite similar to gnutools::link::ConstructJob with changes that +// This is quite similar to gnutools::Linker::ConstructJob with changes that // we use static by default, do not yet support sanitizers or LTO, and a few // others. Eventually we can support more of that and hopefully migrate back -// to gnutools::link. +// to gnutools::Linker. void nacltools::Linker::ConstructJob(Compilation &C, const JobAction &JA, const InputInfo &Output, const InputInfoList &Inputs, |