gas/
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:
parent
30ad6cb96e
commit
286cee81bb
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue