]> granicus.if.org Git - clang/commitdiff
Comment fixes. NFC.
authorDouglas Katzman <dougk@google.com>
Mon, 29 Jun 2015 18:42:16 +0000 (18:42 +0000)
committerDouglas Katzman <dougk@google.com>
Mon, 29 Jun 2015 18:42:16 +0000 (18:42 +0000)
- 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.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240980 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Driver/Options.td
lib/Driver/Tools.cpp

index 4eb5647520b1f0a7edffbb9c909fdd32eb1f3f6a..8b48e8ead42f25c3daddd1272f9ec4579373781f 100644 (file)
@@ -1743,6 +1743,7 @@ def _warn_ : Joined<["--"], "warn-">, Alias<W_Joined>;
 def _write_dependencies : Flag<["--"], "write-dependencies">, Alias<MD>;
 def _write_user_dependencies : Flag<["--"], "write-user-dependencies">, Alias<MMD>;
 def _ : Joined<["--"], "">, Flags<[Unsupported]>;
+
 def mieee_rnd_near : Flag<["-"], "mieee-rnd-near">, Group<m_hexagon_Features_Group>;
 def mv1 : Flag<["-"], "mv1">, Group<m_hexagon_Features_Group>, Alias<march_EQ>,
           AliasArgs<["v1"]>;
index 1b990cfdb25399e51cb88f1d4609815c44a61ef4..0299b7abe0866a1b77a3f08716429b2dfff0a5f5 100644 (file)
@@ -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,