diff options
author | Tom Tromey <tom@tromey.com> | 2023-03-13 09:31:13 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-03-18 11:12:37 -0600 |
commit | 95751990e40d88986205ba3c0719b8afd3da0e7e (patch) | |
tree | c86d95b731283e22d64c857817a060a089f33b93 /gdb/d-lang.c | |
parent | 8a17bdd9ccc26a7a0a2a208a9b870512b2490324 (diff) | |
download | binutils-95751990e40d88986205ba3c0719b8afd3da0e7e.zip binutils-95751990e40d88986205ba3c0719b8afd3da0e7e.tar.gz binutils-95751990e40d88986205ba3c0719b8afd3da0e7e.tar.bz2 |
Reuse existing builtin types
This changes a few spots to reuse the existing builting "void" type,
rather than construct a new one.
Reviewed-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/d-lang.c')
-rw-r--r-- | gdb/d-lang.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/d-lang.c b/gdb/d-lang.c index 8286c5b..457e367 100644 --- a/gdb/d-lang.c +++ b/gdb/d-lang.c @@ -201,8 +201,7 @@ build_d_types (struct gdbarch *gdbarch) struct builtin_d_type *builtin_d_type = new struct builtin_d_type; /* Basic types. */ - builtin_d_type->builtin_void - = arch_type (gdbarch, TYPE_CODE_VOID, TARGET_CHAR_BIT, "void"); + builtin_d_type->builtin_void = builtin_type (gdbarch)->builtin_void; builtin_d_type->builtin_bool = arch_boolean_type (gdbarch, 8, 1, "bool"); builtin_d_type->builtin_byte |