diff options
author | Tom Tromey <tom@tromey.com> | 2023-03-13 10:31:06 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-03-18 11:12:37 -0600 |
commit | 2d39ccd3d1773b26ed8178bcd77375175c48ee62 (patch) | |
tree | e4634ee4c847ad5e71d092188c6f38ab21ae2444 /gdb/f-lang.c | |
parent | 333859402c7968dc718dae73ca0fbddbe096fc51 (diff) | |
download | gdb-2d39ccd3d1773b26ed8178bcd77375175c48ee62.zip gdb-2d39ccd3d1773b26ed8178bcd77375175c48ee62.tar.gz gdb-2d39ccd3d1773b26ed8178bcd77375175c48ee62.tar.bz2 |
Unify arch_integer_type and init_integer_type
This unifies arch_integer_type and init_integer_type by using a type
allocator.
Reviewed-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/f-lang.c')
-rw-r--r-- | gdb/f-lang.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/f-lang.c b/gdb/f-lang.c index 3bf33d0..cb63c37 100644 --- a/gdb/f-lang.c +++ b/gdb/f-lang.c @@ -1746,16 +1746,16 @@ build_fortran_types (struct gdbarch *gdbarch) "logical*8"); builtin_f_type->builtin_integer_s1 - = arch_integer_type (gdbarch, TARGET_CHAR_BIT, 0, "integer*1"); + = init_integer_type (alloc, TARGET_CHAR_BIT, 0, "integer*1"); builtin_f_type->builtin_integer_s2 - = arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch), 0, "integer*2"); + = init_integer_type (alloc, gdbarch_short_bit (gdbarch), 0, "integer*2"); builtin_f_type->builtin_integer - = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch), 0, "integer*4"); + = init_integer_type (alloc, gdbarch_int_bit (gdbarch), 0, "integer*4"); builtin_f_type->builtin_integer_s8 - = arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch), 0, + = init_integer_type (alloc, gdbarch_long_long_bit (gdbarch), 0, "integer*8"); builtin_f_type->builtin_real |