* config/arm/arm.c (arm_regno_class): Handle IWMMXT_GR_REGS.

From-SVN: r72337
This commit is contained in:
Ian Lance Taylor 2003-10-11 15:27:48 +00:00 committed by Ian Lance Taylor
parent c16eadc700
commit e99faaaaaf
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2003-10-11 Ian Lance Taylor <ian@wasabisystems.com>
* config/arm/arm.c (arm_regno_class): Handle IWMMXT_GR_REGS.
2003-10-11 Kazu Hirata <kazu@cs.umass.edu>
* config/m68k/lb1sf68.asm: Follow spelling conventions.

View File

@ -10300,6 +10300,9 @@ arm_regno_class (int regno)
if (IS_IWMMXT_REGNUM (regno))
return IWMMXT_REGS;
if (IS_IWMMXT_GR_REGNUM (regno))
return IWMMXT_GR_REGS;
return FPA_REGS;
}