Skip to content

Commit

Permalink
[Options] Fix two options I mistransformed.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166458 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Bigcheese committed Oct 23, 2012
1 parent b5b37d1 commit bb53170
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/clang/Driver/CC1AsOptions.td
Original file line number Diff line number Diff line change
Expand Up @@ -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">,
Expand Down Expand Up @@ -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">,
Expand Down

0 comments on commit bb53170

Please sign in to comment.