2002-05-08 Elena Zannoni <ezannoni@redhat.com>
* gdbtypes.c : Add new builtin type for 64 bit vectors. (build_gdbtypes): Build builtin_type_v2_float. (_initialize_gdbtypes): Register new builtin type.
This commit is contained in:
parent
fedfc8e665
commit
6599f021bb
@ -1,3 +1,9 @@
|
||||
2002-05-08 Elena Zannoni <ezannoni@redhat.com>
|
||||
|
||||
* gdbtypes.c : Add new builtin type for 64 bit vectors.
|
||||
(build_gdbtypes): Build builtin_type_v2_float.
|
||||
(_initialize_gdbtypes): Register new builtin type.
|
||||
|
||||
2002-05-08 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
|
||||
|
@ -78,6 +78,7 @@ struct type *builtin_type_v4_int32;
|
||||
struct type *builtin_type_v8_int16;
|
||||
struct type *builtin_type_v16_int8;
|
||||
/* 64 bit long vector types */
|
||||
struct type *builtin_type_v2_float;
|
||||
struct type *builtin_type_v2_int32;
|
||||
struct type *builtin_type_v4_int16;
|
||||
struct type *builtin_type_v8_int8;
|
||||
@ -3317,6 +3318,7 @@ build_gdbtypes (void)
|
||||
builtin_type_v8_int16 = init_vector_type (builtin_type_int16, 8);
|
||||
builtin_type_v16_int8 = init_vector_type (builtin_type_int8, 16);
|
||||
/* 64 bit vectors. */
|
||||
builtin_type_v2_float = init_vector_type (builtin_type_float, 2);
|
||||
builtin_type_v2_int32 = init_vector_type (builtin_type_int32, 2);
|
||||
builtin_type_v4_int16 = init_vector_type (builtin_type_int16, 4);
|
||||
builtin_type_v8_int8 = init_vector_type (builtin_type_int8, 8);
|
||||
@ -3415,6 +3417,7 @@ _initialize_gdbtypes (void)
|
||||
register_gdbarch_swap (&builtin_type_v4_int32, sizeof (struct type *), NULL);
|
||||
register_gdbarch_swap (&builtin_type_v8_int16, sizeof (struct type *), NULL);
|
||||
register_gdbarch_swap (&builtin_type_v16_int8, sizeof (struct type *), NULL);
|
||||
register_gdbarch_swap (&builtin_type_v2_float, sizeof (struct type *), NULL);
|
||||
register_gdbarch_swap (&builtin_type_v2_int32, sizeof (struct type *), NULL);
|
||||
register_gdbarch_swap (&builtin_type_v8_int8, sizeof (struct type *), NULL);
|
||||
register_gdbarch_swap (&builtin_type_v4_int16, sizeof (struct type *), NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user