[llvm-cxxfilt] Add description for --types in help text

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.

Differential revision: https://reviews.llvm.org/D127656
This commit is contained in:
gbreynoo 2022-06-14 10:32:56 +01:00
parent 9de831aa2c
commit c4a35c78aa
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ multiclass Eq<string name, string help> {
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">;