diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2012-10-23 01:25:21 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2012-10-23 01:25:21 +0000 |
commit | bb531706602048716a6c36f1ea59f277be9f6753 (patch) | |
tree | c39bf4c0c3de27eb05c7e330cfd97d80f0d51479 | |
parent | b5b37d194dddb960f43f763b3f9c3e17e7be3c2d (diff) |
[Options] Fix two options I mistransformed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166458 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Driver/CC1AsOptions.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Driver/CC1AsOptions.td b/include/clang/Driver/CC1AsOptions.td index 858deb14a7..9fd855a9ce 100644 --- a/include/clang/Driver/CC1AsOptions.td +++ b/include/clang/Driver/CC1AsOptions.td @@ -48,7 +48,7 @@ def o : Separate<["-"], "o">, MetaVarName<"<path>">, 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 show_inst : Flag<["-"], "show-inst">, 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">, |