Commit e99faaaa by Ian Lance Taylor Committed by Ian Lance Taylor

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

From-SVN: r72337
parent c16eadc7
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> 2003-10-11 Kazu Hirata <kazu@cs.umass.edu>
* config/m68k/lb1sf68.asm: Follow spelling conventions. * config/m68k/lb1sf68.asm: Follow spelling conventions.
......
...@@ -10300,6 +10300,9 @@ arm_regno_class (int regno) ...@@ -10300,6 +10300,9 @@ arm_regno_class (int regno)
if (IS_IWMMXT_REGNUM (regno)) if (IS_IWMMXT_REGNUM (regno))
return IWMMXT_REGS; return IWMMXT_REGS;
if (IS_IWMMXT_GR_REGNUM (regno))
return IWMMXT_GR_REGS;
return FPA_REGS; return FPA_REGS;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment