[PATCH] D83690: Port Migator option flags to new option parsing system
Daniel Grumberg via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 13 10:10:25 PDT 2020
dang created this revision.
dang added a reviewer: Bigcheese.
Herald added subscribers: cfe-commits, dexonsmith.
Herald added a project: clang.
Depends on D83406 <https://reviews.llvm.org/D83406>
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D83690
Files:
clang/include/clang/Driver/Options.td
clang/lib/Frontend/CompilerInvocation.cpp
Index: clang/lib/Frontend/CompilerInvocation.cpp
===================================================================
--- clang/lib/Frontend/CompilerInvocation.cpp
+++ clang/lib/Frontend/CompilerInvocation.cpp
@@ -695,12 +695,6 @@
<< "a filename";
}
-static bool ParseMigratorArgs(MigratorOptions &Opts, ArgList &Args) {
- Opts.NoNSAllocReallocError = Args.hasArg(OPT_migrator_no_nsalloc_error);
- Opts.NoFinalizeRemoval = Args.hasArg(OPT_migrator_no_finalize_removal);
- return true;
-}
-
static void ParseCommentArgs(CommentOptions &Opts, ArgList &Args) {
Opts.BlockCommandNames = Args.getAllArgValues(OPT_fcomment_block_commands);
Opts.ParseAllComments = Args.hasArg(OPT_fparse_all_comments);
@@ -3740,7 +3734,6 @@
FixupInvocation(Res);
Success &= ParseAnalyzerArgs(*Res.getAnalyzerOpts(), Args, Diags);
- Success &= ParseMigratorArgs(Res.getMigratorOpts(), Args);
ParseDependencyOutputArgs(Res.getDependencyOutputOpts(), Args);
if (!Res.getDependencyOutputOpts().OutputFile.empty() &&
Res.getDependencyOutputOpts().Targets.empty()) {
Index: clang/include/clang/Driver/Options.td
===================================================================
--- clang/include/clang/Driver/Options.td
+++ clang/include/clang/Driver/Options.td
@@ -3637,10 +3637,12 @@
// Migrator Options
//===----------------------------------------------------------------------===//
def migrator_no_nsalloc_error : Flag<["-"], "no-ns-alloc-error">,
- HelpText<"Do not error on use of NSAllocateCollectable/NSReallocateCollectable">;
+ HelpText<"Do not error on use of NSAllocateCollectable/NSReallocateCollectable">,
+ MarshallingInfoFlag<"MigratorOpts.NoNSAllocReallocError", "false">;
def migrator_no_finalize_removal : Flag<["-"], "no-finalize-removal">,
- HelpText<"Do not remove finalize method in gc mode">;
+ HelpText<"Do not remove finalize method in gc mode">,
+ MarshallingInfoFlag<"MigratorOpts.NoFinalizeRemoval", "false">;
//===----------------------------------------------------------------------===//
// CodeGen Options
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83690.277473.patch
Type: text/x-patch
Size: 2123 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200713/89e45c74/attachment.bin>
More information about the cfe-commits
mailing list