Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[llvm-cxxfilt] De-emphasize "function" in llvm-cxxfilt docs and --help #113309

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions llvm/docs/CommandGuide/llvm-cxxfilt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ OPTIONS

.. option:: --quote

Add `"` `"` around demangled function symbols. Do not quote already quoted
symbols.
Add `"` `"` around demangled names. Do not quote already quoted names.

.. option:: --strip-underscore, -_

Expand All @@ -69,7 +68,7 @@ OPTIONS

.. option:: --types, -t

Attempt to demangle names as type names as well as function names.
Attempt to demangle names as type names as well as symbol names.

.. option:: --version

Expand Down
4 changes: 2 additions & 2 deletions llvm/tools/llvm-cxxfilt/Opts.td
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ multiclass Eq<string name, string help> {
}

def help : FF<"help", "Display this help">;
def quote : FF<"quote", "Quote demangled function names with \" \" if not already quoted">;
def quote : FF<"quote", "Quote demangled names with \" \" if not already quoted">;
defm strip_underscore : BB<"strip-underscore", "Strip the leading underscore", "Don't strip the leading underscore">;
def types : FF<"types", "Attempt to demangle types as well as function names">;
def types : FF<"types", "Attempt to demangle types as well as symbol names">;
def no_params : FF<"no-params", "Skip function parameters and return types">;
def version : FF<"version", "Display the version">;

Expand Down
Loading