(mav_reg_required_here): Allow REG_TYPE_CN as alternative when REG_TYPE_MVF,

REG_TYPE_MVD, REG_TYPE_MVFX or REG_TYPE_MVDX is expected.
This commit is contained in:
Nick Clifton 2004-09-30 13:18:53 +00:00
parent 4e455bf5ea
commit 3631a3c82f
2 changed files with 26 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2004-09-30 Vladimir Ivanov <vladitx@nucleusys.com>
* gas/config/tc-arm.c (mav_reg_required_here): Allow REG_TYPE_CN
as alternative when REG_TYPE_MVF, REG_TYPE_MVD, REG_TYPE_MVFX or
REG_TYPE_MVDX is expected.
2004-09-29 Marc Bevand <m.bevand@gmail.com>
* doc/c-i386.texi (i386-Mnemonics): Fix typo.

View file

@ -10254,6 +10254,24 @@ mav_reg_required_here (str, shift, regtype)
/* Restore the start point. */
*str = start;
/* Try generic coprocessor name if applicable. */
if (regtype == REG_TYPE_MVF ||
regtype == REG_TYPE_MVD ||
regtype == REG_TYPE_MVFX ||
regtype == REG_TYPE_MVDX)
{
if ((reg = arm_reg_parse (str, all_reg_maps[REG_TYPE_CN].htab)) != FAIL)
{
if (shift >= 0)
inst.instruction |= reg << shift;
return reg;
}
/* Restore the start point. */
*str = start;
}
/* In the few cases where we might be able to accept something else
this error can be overridden. */
inst.error = _(all_reg_maps[regtype].expected);
@ -10494,7 +10512,7 @@ do_mav_quad_6a (str)
char * str;
{
do_mav_quad (str, MAV_MODE6, REG_TYPE_MVAX, REG_TYPE_MVFX, REG_TYPE_MVFX,
REG_TYPE_MVFX);
REG_TYPE_MVFX);
}
static void
@ -10502,7 +10520,7 @@ do_mav_quad_6b (str)
char * str;
{
do_mav_quad (str, MAV_MODE6, REG_TYPE_MVAX, REG_TYPE_MVAX, REG_TYPE_MVFX,
REG_TYPE_MVFX);
REG_TYPE_MVFX);
}
/* cfmvsc32<cond> DSPSC,MVDX[15:0]. */