Fix a typo where the same name was checked twice.

PR gas/18679
	* config/xtensa-relax.c (same_operand_name): Fix typo.
This commit is contained in:
Nick Clifton 2015-08-11 09:36:57 +01:00
parent 3037929188
commit 2b29bb41d5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2015-08-11 Nick Clifton <nickc@redhat.com>
PR gas/18679
* config/xtensa-relax.c (same_operand_name): Fix typo.
2015-08-08 Hans-Peter Nilsson <hp@axis.com>
* tc-arm.c (double_to_single, is_double_a_single): Append ULL to

View File

@ -869,7 +869,7 @@ clear_opname_map (opname_map *m)
static bfd_boolean
same_operand_name (const opname_map_e *m1, const opname_map_e *m2)
{
if (m1->operand_name == NULL || m1->operand_name == NULL)
if (m1->operand_name == NULL || m2->operand_name == NULL)
return FALSE;
return (m1->operand_name == m2->operand_name);
}