diff options
author | Tom Tromey <tom@tromey.com> | 2018-04-23 13:23:02 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-04-30 11:25:32 -0600 |
commit | 2fff16dd8c25831fb5fbf198ca86d5befff629be (patch) | |
tree | 02b9688a9d17d6c872135e016f600ab9a0277f7c /gdb/rust-lang.c | |
parent | Expose type alignment on gdb.Type (diff) | |
download | binutils-gdb-2fff16dd8c25831fb5fbf198ca86d5befff629be.tar.gz binutils-gdb-2fff16dd8c25831fb5fbf198ca86d5befff629be.tar.bz2 binutils-gdb-2fff16dd8c25831fb5fbf198ca86d5befff629be.zip |
Remove rust_type_alignment
rust_type_alignment is not needed now that gdb has type alignment
code. So, this removes it.
2018-04-30 Tom Tromey <tom@tromey.com>
* rust-lang.c (rust_type_alignment): Remove.
(rust_composite_type): Use type_align.
Diffstat (limited to 'gdb/rust-lang.c')
-rw-r--r-- | gdb/rust-lang.c | 43 |
1 files changed, 1 insertions, 42 deletions
diff --git a/gdb/rust-lang.c b/gdb/rust-lang.c index 5d1c0a7f37f..ed0394592fa 100644 --- a/gdb/rust-lang.c +++ b/gdb/rust-lang.c @@ -862,47 +862,6 @@ rust_print_type (struct type *type, const char *varstring, -/* Compute the alignment of the type T. */ - -static int -rust_type_alignment (struct type *t) -{ - t = check_typedef (t); - switch (TYPE_CODE (t)) - { - default: - error (_("Could not compute alignment of type")); - - case TYPE_CODE_PTR: - case TYPE_CODE_ENUM: - case TYPE_CODE_INT: - case TYPE_CODE_FLT: - case TYPE_CODE_REF: - case TYPE_CODE_CHAR: - case TYPE_CODE_BOOL: - return TYPE_LENGTH (t); - - case TYPE_CODE_ARRAY: - case TYPE_CODE_COMPLEX: - return rust_type_alignment (TYPE_TARGET_TYPE (t)); - - case TYPE_CODE_STRUCT: - case TYPE_CODE_UNION: - { - int i; - int align = 1; - - for (i = 0; i < TYPE_NFIELDS (t); ++i) - { - int a = rust_type_alignment (TYPE_FIELD_TYPE (t, i)); - if (a > align) - align = a; - } - return align; - } - } -} - /* Like arch_composite_type, but uses TYPE to decide how to allocate -- either on an obstack or on a gdbarch. */ @@ -945,7 +904,7 @@ rust_composite_type (struct type *original, if (field2 != NULL) { struct field *field = &TYPE_FIELD (result, i); - int align = rust_type_alignment (type2); + unsigned align = type_align (type2); if (align != 0) { |