diff options
author | Felix Willgerodt <felix.willgerodt@intel.com> | 2020-09-10 14:29:52 +0200 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2020-09-11 11:36:14 -0700 |
commit | 1347d111096835049841f2039a4d5852404606a3 (patch) | |
tree | e3806753f79e6957214304672c384199b59e2397 /gdb | |
parent | dae7c5a44424e8a2ff136085b07a852fc578e24e (diff) | |
download | gdb-1347d111096835049841f2039a4d5852404606a3.zip gdb-1347d111096835049841f2039a4d5852404606a3.tar.gz gdb-1347d111096835049841f2039a4d5852404606a3.tar.bz2 |
i386-tdep: Fix naming in zmm and ymm type descriptions.
gdb/Changelog:
2020-07-02 Felix Willgerodt <felix.willgerodt@intel.com>
* i386-tdep.c (i386_zmm_type): Fix field names.
(i386_ymm_type): Fix field names.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/i386-tdep.c | 28 |
2 files changed, 19 insertions, 14 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6444bc2..b3e3d59 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2020-09-11 Felix Willgerodt <felix.willgerodt@intel.com> + + * i386-tdep.c (i386_zmm_type): Fix field names. + (i386_ymm_type): Fix field names. + 2020-09-11 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> * breakpoint.c: Fix typo in the help message of the diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c index b3aa115..322d2a4 100644 --- a/gdb/i386-tdep.c +++ b/gdb/i386-tdep.c @@ -3105,13 +3105,13 @@ i386_zmm_type (struct gdbarch *gdbarch) #if 0 union __gdb_builtin_type_vec512i { - int128_t uint128[4]; - int64_t v4_int64[8]; - int32_t v8_int32[16]; - int16_t v16_int16[32]; - int8_t v32_int8[64]; - double v4_double[8]; - float v8_float[16]; + int128_t v4_int128[4]; + int64_t v8_int64[8]; + int32_t v16_int32[16]; + int16_t v32_int16[32]; + int8_t v64_int8[64]; + double v8_double[8]; + float v16_float[16]; }; #endif @@ -3158,13 +3158,13 @@ i386_ymm_type (struct gdbarch *gdbarch) #if 0 union __gdb_builtin_type_vec256i { - int128_t uint128[2]; - int64_t v2_int64[4]; - int32_t v4_int32[8]; - int16_t v8_int16[16]; - int8_t v16_int8[32]; - double v2_double[4]; - float v4_float[8]; + int128_t v2_int128[2]; + int64_t v4_int64[4]; + int32_t v8_int32[8]; + int16_t v16_int16[16]; + int8_t v32_int8[32]; + double v4_double[4]; + float v8_float[8]; }; #endif |