From: H.J. Lu Date: Wed, 2 Jan 2008 23:55:45 +0000 (+0000) Subject: 2008-01-02 H.J. Lu X-Git-Tag: sid-snapshot-20080201~324 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fc4adea1ba8fa8abe3c0a78ebb64e8aefec1bc4b;p=external%2Fbinutils.git 2008-01-02 H.J. Lu * config/tc-i386.c (process_suffix): Fix a typo. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 52f100f..2cd9318 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 2008-01-02 H.J. Lu + * config/tc-i386.c (process_suffix): Fix a typo. + +2008-01-02 H.J. Lu + PR gas/5534 * config/tc-i386.c (match_template): Handle XMMWORD_MNEM_SUFFIX. Check memory size in Intel mode. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 18e0bb7..222ab09 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -3532,7 +3532,7 @@ process_suffix (void) suffixes |= 1 << 1; if (!i.tm.opcode_modifier.no_lsuf) suffixes |= 1 << 2; - if (!i.tm.opcode_modifier.no_lsuf) + if (!i.tm.opcode_modifier.no_ldsuf) suffixes |= 1 << 3; if (!i.tm.opcode_modifier.no_ssuf) suffixes |= 1 << 4;