[PATCH] D83648: [Driver] Fix integrated_as definition by setting it as a DriverOption
Pengxuan Zheng via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sun Jul 12 16:17:20 PDT 2020
pzheng created this revision.
pzheng added reviewers: MaskRay, dblaikie, echristo.
Herald added subscribers: cfe-commits, dang.
Herald added a project: clang.
DriverOption seems to be accidentally removed from integrated_as definition in
commit e5158b5 <https://reviews.llvm.org/rGe5158b52730d323bb8cd2cba6dc6c89b90cba452>.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D83648
Files:
clang/include/clang/Driver/Options.td
Index: clang/include/clang/Driver/Options.td
===================================================================
--- clang/include/clang/Driver/Options.td
+++ clang/include/clang/Driver/Options.td
@@ -2887,7 +2887,7 @@
MetaVarName<"<language>">;
def y : Joined<["-"], "y">;
-defm integrated_as : OptOutFFlag<"integrated-as", "Enable the integrated assembler", "Disable the integrated assembler">;
+defm integrated_as : OptOutFFlag<"integrated-as", "Enable", "Disable", " the integrated assembler", [DriverOption]>;
def fintegrated_cc1 : Flag<["-"], "fintegrated-cc1">,
Flags<[CoreOption, DriverOption]>, Group<f_Group>,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83648.277309.patch
Type: text/x-patch
Size: 652 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200712/145452fa/attachment.bin>
More information about the cfe-commits
mailing list