From: H.J. Lu Date: Thu, 26 Jul 2018 15:49:12 +0000 (-0700) Subject: x86: Initialize broadcast_op.bytes to 0 X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=1f75763aa1bfe2f998f4347f0de436092a126980;p=deliverable%2Fbinutils-gdb.git x86: Initialize broadcast_op.bytes to 0 * config/tc-i386.c (check_VecOperations): Initialize broadcast_op.bytes to 0. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 582a12d0ee..e8c500a2c0 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2018-07-26 H.J. Lu + + * config/tc-i386.c (check_VecOperations): Initialize + broadcast_op.bytes to 0. + 2018-07-26 Alex Chadwick * 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 3f8bd93224..9e9c676580 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. */