mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-15 05:01:13 +08:00
2008-01-10 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (match_template): Continue if processor doesn't match.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2008-01-10 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* config/tc-i386.c (match_template): Continue if processor
|
||||
doesn't match.
|
||||
|
||||
2008-01-09 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* config/tc-ia64.c (ia64_convert_frag): Zero-initialize room for
|
||||
|
@ -3056,13 +3056,11 @@ match_template (void)
|
||||
else
|
||||
{
|
||||
found_cpu_match = cpu_flags_match (t->cpu_flags) == 3;
|
||||
if (!found_cpu_match)
|
||||
continue;
|
||||
if (!t->operands)
|
||||
{
|
||||
if (!found_cpu_match)
|
||||
continue;
|
||||
/* We've found a match; break out of loop. */
|
||||
break;
|
||||
}
|
||||
/* We've found a match; break out of loop. */
|
||||
break;
|
||||
}
|
||||
|
||||
/* Address size prefix will turn Disp64/Disp32/Disp16 operand
|
||||
|
Reference in New Issue
Block a user