diff mbox series

[v2,1/2] i386-tdep: Fix naming in zmm and ymm type descriptions.

Message ID 20200724085935.2637025-2-felix.willgerodt@intel.com
State New
Headers show
Series avx512 bfloat16 support | expand

Commit Message

Willgerodt, Felix July 24, 2020, 8:59 a.m. UTC
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.
---
 gdb/i386-tdep.c | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

Comments

Kirill Yukhin July 28, 2020, 1:23 p.m. UTC | #1
Hello,

On 24 июл 10:59, Felix Willgerodt via Gcc-patches wrote:
> 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.

I guess mailing list is wrong.

--
Regards, Kirill Yukhin
Li, Pan2 via Gcc-patches July 28, 2020, 1:43 p.m. UTC | #2
Hi Kirill,

You are right, PATCH v2 1/2 obviously doesn't need gcc approval. It just landed on gcc-patches as I sent the series out in one go, sorry for that.
Please ignore the first patch if you are seeing this on gcc-patches.

I am however looking for gcc approval for the code shared between GDB and GCC in PATCH v2 2/2 (see cover letter for details).

Felix

-----Original Message-----
From: Kirill Yukhin <kirill.yukhin@gmail.com> 
Sent: Dienstag, 28. Juli 2020 15:24
To: Willgerodt, Felix <felix.willgerodt@intel.com>
Cc: gdb-patches@sourceware.org; gcc-patches@gcc.gnu.org
Subject: Re: [PATCH v2 1/2] i386-tdep: Fix naming in zmm and ymm type descriptions.

Hello,

On 24 июл 10:59, Felix Willgerodt via Gcc-patches wrote:
> 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.

I guess mailing list is wrong.

--
Regards, Kirill Yukhin
Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid, Gary Kershaw
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928
diff mbox series

Patch

diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c
index 9b905c1996a..648974455f6 100644
--- a/gdb/i386-tdep.c
+++ b/gdb/i386-tdep.c
@@ -3103,13 +3103,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
 
@@ -3156,13 +3156,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