forked from OSchip/llvm-project
[clang][cli] Port Comment option flags to new parsing system
Depends on D83690 Reviewed By: dexonsmith Original patch by Daniel Grumberg. Differential Revision: https://reviews.llvm.org/D83691
This commit is contained in:
parent
193a9b374e
commit
a1702a297b
|
@ -930,7 +930,8 @@ def fansi_escape_codes : Flag<["-"], "fansi-escape-codes">, Group<f_Group>,
|
|||
def fcomment_block_commands : CommaJoined<["-"], "fcomment-block-commands=">, Group<f_clang_Group>, Flags<[CC1Option]>,
|
||||
HelpText<"Treat each comma separated argument in <arg> as a documentation comment block command">,
|
||||
MetaVarName<"<arg>">;
|
||||
def fparse_all_comments : Flag<["-"], "fparse-all-comments">, Group<f_clang_Group>, Flags<[CC1Option]>;
|
||||
def fparse_all_comments : Flag<["-"], "fparse-all-comments">, Group<f_clang_Group>, Flags<[CC1Option]>,
|
||||
MarshallingInfoFlag<"LangOpts->CommentOpts.ParseAllComments">;
|
||||
def frecord_command_line : Flag<["-"], "frecord-command-line">,
|
||||
Group<f_clang_Group>;
|
||||
def fno_record_command_line : Flag<["-"], "fno-record-command-line">,
|
||||
|
|
Loading…
Reference in New Issue