r192898 - [mips][msa] Update -mmsa help text and removed the hidden flag to better match conventions used by other targets

Daniel Sanders daniel.sanders at imgtec.com
Thu Oct 17 07:35:43 PDT 2013


Author: dsanders
Date: Thu Oct 17 09:35:42 2013
New Revision: 192898

URL: http://llvm.org/viewvc/llvm-project?rev=192898&view=rev
Log:
[mips][msa] Update -mmsa help text and removed the hidden flag to better match conventions used by other targets


Modified:
    cfe/trunk/include/clang/Driver/Options.td

Modified: cfe/trunk/include/clang/Driver/Options.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/Options.td?rev=192898&r1=192897&r2=192898&view=diff
==============================================================================
--- cfe/trunk/include/clang/Driver/Options.td (original)
+++ cfe/trunk/include/clang/Driver/Options.td Thu Oct 17 09:35:42 2013
@@ -1101,9 +1101,9 @@ def mno_dspr2 : Flag<["-"], "mno-dspr2">
 def msingle_float : Flag<["-"], "msingle-float">, Group<m_Group>;
 def mdouble_float : Flag<["-"], "mdouble-float">, Group<m_Group>;
 def mmsa : Flag<["-"], "mmsa">, Group<m_Group>,
-  HelpText<"Enable MSA ASE on MIPS processors">, Flags<[HelpHidden]>;
+  HelpText<"Enable MSA ASE (MIPS only)">;
 def mno_msa : Flag<["-"], "mno-msa">, Group<m_Group>,
-  HelpText<"Disable MSA ASE on MIPS processors">, Flags<[HelpHidden]>;
+  HelpText<"Disable MSA ASE (MIPS only)">;
 def mnan_EQ : Joined<["-"], "mnan=">, Group<m_Group>;
 def mips32 : Flag<["-"], "mips32">,
   Alias<march_EQ>, AliasArgs<["mips32"]>,





More information about the cfe-commits mailing list