2005-05-25  Jan Beulich  <jbeulich@novell.com>

	* config/tc-ia64.c (md_begin): Don't try to match slot 2 of an MLX
	template.
This commit is contained in:
Jan Beulich 2005-05-25 07:17:08 +00:00
parent 30ad6cb96e
commit 286cee81bb
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-05-25 Jan Beulich <jbeulich@novell.com>
* config/tc-ia64.c (md_begin): Don't try to match slot 2 of an MLX
template.
2005-05-25 Jan Beulich <jbeulich@novell.com>
* config/tc-ia64.c (ia64_gen_real_reloc_type): Also handle

View file

@ -7288,7 +7288,7 @@ md_begin ()
{
if (match (t, j, 1))
{
if (match (t, k, 2))
if ((t == 2 && j == IA64_TYPE_X) || match (t, k, 2))
goodness = 3 + 3 + 3;
else
goodness = 3 + 3 + extra_goodness (t, 2);
@ -7304,7 +7304,7 @@ md_begin ()
}
else if (match (t, i, 1))
{
if (match (t, j, 2))
if ((t == 2 && i == IA64_TYPE_X) || match (t, j, 2))
goodness = 3 + 3;
else
goodness = 3 + extra_goodness (t, 2);