[llvm] [llvm-cxxfilt] Added the option --no-params (PR #75348)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 18 01:55:52 PST 2023
================
@@ -32,7 +32,7 @@ enum : int {
/// Returns a non-NULL pointer to a NUL-terminated C style string
/// that should be explicitly freed, if successful. Otherwise, may return
/// nullptr if mangled_name is not a valid mangling or is nullptr.
-char *itaniumDemangle(std::string_view mangled_name);
+char *itaniumDemangle(std::string_view mangled_name, bool ParseParams = true);
----------------
jh7370 wrote:
A comment near the top of this file says that this is a copy of __cxa_demangle, which implies that you'll need to make the same changes to that file as you're making to this one. I believe this also applies to the .cpp.
https://github.com/llvm/llvm-project/pull/75348
More information about the llvm-commits
mailing list