This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils 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]

[binutils-gdb] x86: Initialize broadcast_op.bytes to 0


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=1f75763aa1bfe2f998f4347f0de436092a126980

commit 1f75763aa1bfe2f998f4347f0de436092a126980
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Thu Jul 26 08:49:12 2018 -0700

    x86: Initialize broadcast_op.bytes to 0
    
    	* config/tc-i386.c (check_VecOperations): Initialize
    	broadcast_op.bytes to 0.

Diff:
---
 gas/ChangeLog        | 5 +++++
 gas/config/tc-i386.c | 1 +
 2 files changed, 6 insertions(+)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index 582a12d..e8c500a 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2018-07-26  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* config/tc-i386.c (check_VecOperations): Initialize
+	broadcast_op.bytes to 0.
+
 2018-07-26  Alex Chadwick  <Alex.Chadwick@cl.cam.ac.uk>
 
 	* config/tc-ppc.c (md_show_usage): Add -mgekko and -mbroadway.
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
index 3f8bd93..9e9c676 100644
--- a/gas/config/tc-i386.c
+++ b/gas/config/tc-i386.c
@@ -8634,6 +8634,7 @@ check_VecOperations (char *op_string, char *op_end)
 
 	      broadcast_op.type = bcst_type;
 	      broadcast_op.operand = this_operand;
+	      broadcast_op.bytes = 0;
 	      i.broadcast = &broadcast_op;
 	    }
 	  /* Check masking operation.  */


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