Also, test case?

On Mon, Oct 22, 2012 at 6:36 PM, Matt Beaumont-Gay <[email protected]> wrote:
> Thanks for the quick fix!
>
> On Mon, Oct 22, 2012 at 6:25 PM, Michael J. Spencer
> <[email protected]> wrote:
>> 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">,
>>
>>
>> _______________________________________________
>> cfe-commits mailing list
>> [email protected]
>> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to