Commit 22843acd by DJ Delorie Committed by DJ Delorie

m32c.c (m32c_regno_reg_class): Return smallest reg class for A0/A1.

* config/m32c/m32c.c (m32c_regno_reg_class): Return smallest reg
class for A0/A1.

From-SVN: r169501
parent 199c8f2f
2011-02-01 DJ Delorie <dj@redhat.com>
* config/m32c/m32c.c (m32c_regno_reg_class): Return smallest reg
class for A0/A1.
2011-02-01 Sebastian Pop <sebastian.pop@amd.com>
PR tree-optimization/47561
......
......@@ -636,8 +636,9 @@ m32c_regno_reg_class (int regno)
case R3_REGNO:
return R3_REGS;
case A0_REGNO:
return A0_REGS;
case A1_REGNO:
return A_REGS;
return A1_REGS;
case SB_REGNO:
return SB_REGS;
case FB_REGNO:
......
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