diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-05-16 12:16:06 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-05-16 12:36:05 -0400 |
commit | 7d93a1e0b6af703c75daa93456608f8bb5f34f13 (patch) | |
tree | 463f7922a76e4a9341095339498726b65be181db /gdb/infcall.c | |
parent | d0e39ea27cde07011967ab74d39cf13dfe3370c4 (diff) | |
download | gdb-7d93a1e0b6af703c75daa93456608f8bb5f34f13.zip gdb-7d93a1e0b6af703c75daa93456608f8bb5f34f13.tar.gz gdb-7d93a1e0b6af703c75daa93456608f8bb5f34f13.tar.bz2 |
gdb: remove TYPE_NAME macro
Remove `TYPE_NAME`, changing all the call sites to use `type::name`
directly. This is quite a big diff, but this was mostly done using sed
and coccinelle. A few call sites were done by hand.
gdb/ChangeLog:
* gdbtypes.h (TYPE_NAME): Remove. Change all cal sites to use
type::name instead.
Diffstat (limited to 'gdb/infcall.c')
-rw-r--r-- | gdb/infcall.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c index 818b6cb..8da843a 100644 --- a/gdb/infcall.c +++ b/gdb/infcall.c @@ -1062,11 +1062,11 @@ call_function_by_hand_dummy (struct value *function, auto info = language_pass_by_reference (param_type); if (!info.copy_constructible) error (_("expression cannot be evaluated because the type '%s' " - "is not copy constructible"), TYPE_NAME (param_type)); + "is not copy constructible"), param_type->name ()); if (!info.destructible) error (_("expression cannot be evaluated because the type '%s' " - "is not destructible"), TYPE_NAME (param_type)); + "is not destructible"), param_type->name ()); if (info.trivially_copyable) continue; @@ -1091,14 +1091,14 @@ call_function_by_hand_dummy (struct value *function, value *copy_ctor; value *cctor_args[2] = { clone_ptr, original_arg }; find_overload_match (gdb::make_array_view (cctor_args, 2), - TYPE_NAME (param_type), METHOD, + param_type->name (), METHOD, &clone_ptr, nullptr, ©_ctor, nullptr, nullptr, 0, EVAL_NORMAL); if (copy_ctor == nullptr) error (_("expression cannot be evaluated because a copy " "constructor for the type '%s' could not be found " - "(maybe inlined?)"), TYPE_NAME (param_type)); + "(maybe inlined?)"), param_type->name ()); call_function_by_hand (copy_ctor, default_return_type, gdb::make_array_view (cctor_args, 2)); @@ -1130,7 +1130,7 @@ call_function_by_hand_dummy (struct value *function, if (dtor_name == nullptr) error (_("expression cannot be evaluated because a destructor " "for the type '%s' could not be found " - "(maybe inlined?)"), TYPE_NAME (param_type)); + "(maybe inlined?)"), param_type->name ()); value *dtor = find_function_in_inferior (dtor_name, 0); |