This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Set 256bit vector type name to builtin_type_vec256i


Hi,

I checked in this patch to set 256bit vector type name to
builtin_type_vec256i as an obvious fix.


H.J.
---
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.12174
diff -u -p -r1.12174 ChangeLog
--- ChangeLog	12 Sep 2010 21:49:40 -0000	1.12174
+++ ChangeLog	13 Sep 2010 17:39:04 -0000
@@ -1,3 +1,8 @@
+2010-09-13  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* i386-tdep.c (i386_ymm_type): Set type name to
+	builtin_type_vec256i.
+
 2010-09-12  Michael Snyder  <msnyder@vmware.com>
 
 	* i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
Index: i386-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/i386-tdep.c,v
retrieving revision 1.319
diff -u -p -r1.319 i386-tdep.c
--- i386-tdep.c	12 Sep 2010 21:49:40 -0000	1.319
+++ i386-tdep.c	13 Sep 2010 17:39:05 -0000
@@ -2417,7 +2417,7 @@ i386_ymm_type (struct gdbarch *gdbarch)
 				   init_vector_type (bt->builtin_int128, 2));
 
       TYPE_VECTOR (t) = 1;
-      TYPE_NAME (t) = "builtin_type_vec128i";
+      TYPE_NAME (t) = "builtin_type_vec256i";
       tdep->i386_ymm_type = t;
     }
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]