From: Douglas Katzman Date: Mon, 29 Jun 2015 18:42:16 +0000 (+0000) Subject: Comment fixes. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b79c45a249d12d2d259390db35a29b1c113e9f6;p=clang 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240980 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td index 4eb5647520..8b48e8ead4 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -1743,6 +1743,7 @@ def _warn_ : Joined<["--"], "warn-">, Alias; def _write_dependencies : Flag<["--"], "write-dependencies">, Alias; def _write_user_dependencies : Flag<["--"], "write-user-dependencies">, Alias; def _ : Joined<["--"], "">, Flags<[Unsupported]>; + def mieee_rnd_near : Flag<["-"], "mieee-rnd-near">, Group; def mv1 : Flag<["-"], "mv1">, Group, Alias, AliasArgs<["v1"]>; diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index 1b990cfdb2..0299b7abe0 100644 --- a/lib/Driver/Tools.cpp +++ b/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,