[cfe-commits] r166458 - /cfe/trunk/include/clang/Driver/CC1AsOptions.td
Michael J. Spencer
bigcheesegs at gmail.com
Mon Oct 22 18:25:21 PDT 2012
Author: mspencer
Date: Mon Oct 22 20:25:21 2012
New Revision: 166458
URL: http://llvm.org/viewvc/llvm-project?rev=166458&view=rev
Log:
[Options] Fix two options I mistransformed.
Modified:
cfe/trunk/include/clang/Driver/CC1AsOptions.td
Modified: cfe/trunk/include/clang/Driver/CC1AsOptions.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/CC1AsOptions.td?rev=166458&r1=166457&r2=166458&view=diff
==============================================================================
--- cfe/trunk/include/clang/Driver/CC1AsOptions.td (original)
+++ cfe/trunk/include/clang/Driver/CC1AsOptions.td Mon Oct 22 20:25:21 2012
@@ -48,7 +48,7 @@
def filetype : Separate<["-"], "filetype">,
HelpText<"Specify the output file type ('asm', 'null', or 'obj')">;
-def help : Flag<["-", "--"], "-help">,
+def help : Flag<["-", "--"], "help">,
HelpText<"Print this help text">;
def version : Flag<["-", "--"], "version">,
@@ -78,7 +78,7 @@
def relax_all : Flag<["-"], "relax-all">,
HelpText<"Relax all fixups (for performance testing)">;
-def no_exec_stack : Flag<["-"], "-noexecstack">,
+def no_exec_stack : Flag<["--"], "noexecstack">,
HelpText<"Mark the file as not needing an executable stack">;
def fatal_warnings : Flag<["--"], "fatal-warnings">,
More information about the cfe-commits
mailing list