From: H.J. Lu Date: Fri, 23 May 2008 13:55:36 +0000 (+0000) Subject: 2008-05-23 H.J. Lu X-Git-Tag: msnyder-reverse-20080609-branchpoint~132 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=95f283e8f644349569df75b089178014914d276c;p=external%2Fbinutils.git 2008-05-23 H.J. Lu PR gas/6518 * config/tc-i386.c (match_template): Report ambiguous operand size, not invalid suffix when there is no match in Intel syntax. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 7a572df..44319fe 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2008-05-23 H.J. Lu + + PR gas/6518 + * config/tc-i386.c (match_template): Report ambiguous operand + size, not invalid suffix when there is no match in Intel + syntax. + 2008-05-22 Paul Brook * config/tc-arm.c (parse_cond): Covert to lowercase before matching. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 16f3742..19a3ff0 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -3754,8 +3754,12 @@ match_template (void) if (t == current_templates->end) { /* We found no match. */ - as_bad (_("suffix or operands invalid for `%s'"), - current_templates->start->name); + if (intel_syntax) + as_bad (_("ambiguous operand size or operands invalid for `%s'"), + current_templates->start->name); + else + as_bad (_("suffix or operands invalid for `%s'"), + current_templates->start->name); return 0; }