[PATCH 09/10] Allow function types as template parameters in name canonicalizer
Tom Tromey
tom@tromey.com
Sun Apr 21 17:00:09 GMT 2024
This adds function types as template parameters in the C++ name
canonicalizer.
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=11907
---
gdb/cp-name-parser.y | 4 ++++
gdb/cp-support.c | 7 -------
2 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/gdb/cp-name-parser.y b/gdb/cp-name-parser.y
index 3c5dea2de1c..e820faa2db9 100644
--- a/gdb/cp-name-parser.y
+++ b/gdb/cp-name-parser.y
@@ -596,6 +596,7 @@ template_arg : typespec_2
| '&' '(' start ')'
{ $$ = state->fill_comp (DEMANGLE_COMPONENT_UNARY, state->make_operator ("&", 1), $3); }
| exp
+ | function
;
function_args : typespec_2
@@ -2066,6 +2067,9 @@ canonicalize_tests ()
should_be_the_same ("x::y::z<0b111>", "x::y::z<0D7>");
should_be_the_same ("x::y::z<0xff'ff>", "x::y::z<65535>");
+
+ should_be_the_same ("something<void ()>", "something< void() >");
+ should_be_the_same ("something<void ()>", "something<void (void)>");
}
#endif
diff --git a/gdb/cp-support.c b/gdb/cp-support.c
index 4c64e4963e4..74a1b61ed68 100644
--- a/gdb/cp-support.c
+++ b/gdb/cp-support.c
@@ -2186,15 +2186,8 @@ test_cp_remove_params ()
CHECK_INCOMPL ("A::foo<(anonymous namespace)::B",
"A::foo");
- /* Shouldn't this parse? Looks like a bug in
- cp_demangled_name_to_comp. See PR c++/22411. */
-#if 0
CHECK ("A::foo<void(int)>::func(int)",
"A::foo<void(int)>::func");
-#else
- CHECK_INCOMPL ("A::foo<void(int)>::func(int)",
- "A::foo");
-#endif
CHECK_INCOMPL ("A::foo<void(int",
"A::foo");
--
2.44.0
More information about the Gdb-patches
mailing list