[PATCH] D127656: [llvm-cxxfilt] Add description for --types in help text
Owen Reynolds via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 13 08:34:28 PDT 2022
gbreynoo created this revision.
gbreynoo added reviewers: MaskRay, jhenderson.
Herald added a subscriber: StephenFan.
Herald added a project: All.
gbreynoo requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
It appears that in the move to tablegen the description of `--types` was lost:
https://reviews.llvm.org/D105605
This change adds the missing description.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D127656
Files:
llvm/tools/llvm-cxxfilt/Opts.td
Index: llvm/tools/llvm-cxxfilt/Opts.td
===================================================================
--- llvm/tools/llvm-cxxfilt/Opts.td
+++ llvm/tools/llvm-cxxfilt/Opts.td
@@ -16,7 +16,7 @@
def help : FF<"help", "Display this help">;
defm strip_underscore : BB<"strip-underscore", "Strip the leading underscore", "Don't strip the leading underscore">;
-def types : FF<"types", "">;
+def types : FF<"types", "Attempt to demangle types as well as function names">;
def version : FF<"version", "Display the version">;
defm : Eq<"format", "Specify mangling format. Currently ignored because only 'gnu' is supported">;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D127656.436410.patch
Type: text/x-patch
Size: 629 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220613/ebf8fcbc/attachment.bin>
More information about the llvm-commits
mailing list