diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2016-09-06 17:26:32 +0200 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2016-09-06 17:26:32 +0200 |
commit | 88dfca6c43c11dea69db24cfb87e6821e63e29b2 (patch) | |
tree | 0efdcd0b229d16125cbf2423247685231a9bba28 /gdb/rl78-tdep.c | |
parent | ae438bc5c06b770c00f37e4ed244707ce3ab9ff4 (diff) | |
download | gdb-88dfca6c43c11dea69db24cfb87e6821e63e29b2.zip gdb-88dfca6c43c11dea69db24cfb87e6821e63e29b2.tar.gz gdb-88dfca6c43c11dea69db24cfb87e6821e63e29b2.tar.bz2 |
Add some missing arch_..._type helpers
gdbtypes provides a number of helper routines that can be called instead of
using arch_type directly to create a type of a particular kind. This patch
adds two additional such routines that have been missing so far, to allow
creation of TYPE_CODE_DECFLOAT and TYPE_CODE_POINTER types.
The patch also changes a number of places to use the new helper routines
instead of calling arch_type directly. No functional change intended.
gdb/ChangeLog:
* gdbtypes.h (arch_decfloat_type): New prototype.
(arch_pointer_type): Likewise.
* gdbtypes.c (arch_decfloat_type): New function.
(arch_pointer_type): Likewise.
(gdbtypes_post_init): Use arch_decfloat_type.
* avr-tdep.c (avr_gdbarch_init): Use arch_pointer_type.
* ft32-tdep.c (ft32_gdbarch_init): Likewise.
* m32c-tdep.c (make_types): Likewise.
* rl78-tdep.c (rl78_gdbarch_init): Likewise.
Signed-off-by: Ulrich Weigand <ulrich.weigand@de.ibm.com>
Diffstat (limited to 'gdb/rl78-tdep.c')
-rw-r--r-- | gdb/rl78-tdep.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/gdb/rl78-tdep.c b/gdb/rl78-tdep.c index 420ee86..4818d38 100644 --- a/gdb/rl78-tdep.c +++ b/gdb/rl78-tdep.c @@ -1410,16 +1410,9 @@ rl78_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) tdep->rl78_int32 = arch_integer_type (gdbarch, 32, 0, "int32_t"); tdep->rl78_data_pointer - = arch_type (gdbarch, TYPE_CODE_PTR, 16 / TARGET_CHAR_BIT, - xstrdup ("rl78_data_addr_t")); - TYPE_TARGET_TYPE (tdep->rl78_data_pointer) = tdep->rl78_void; - TYPE_UNSIGNED (tdep->rl78_data_pointer) = 1; - + = arch_pointer_type (gdbarch, 16, "rl78_data_addr_t", tdep->rl78_void); tdep->rl78_code_pointer - = arch_type (gdbarch, TYPE_CODE_PTR, 32 / TARGET_CHAR_BIT, - xstrdup ("rl78_code_addr_t")); - TYPE_TARGET_TYPE (tdep->rl78_code_pointer) = tdep->rl78_void; - TYPE_UNSIGNED (tdep->rl78_code_pointer) = 1; + = arch_pointer_type (gdbarch, 32, "rl78_code_addr_t", tdep->rl78_void); tdep->rl78_psw_type = arch_flags_type (gdbarch, "builtin_type_rl78_psw", 1); append_flags_type_flag (tdep->rl78_psw_type, 0, "CY"); |