Commit c6004917 by Rask Ingemann Lambertsen Committed by DJ Delorie

re PR target/33184 (m32c: ostream.tcc:92: error: unable to find a register to…

re PR target/33184 (m32c: ostream.tcc:92: error: unable to find a register to spill in class 'A_REGS')

2007-08-26  Rask Ingemann Lambertsen  <rask@sygehus.dk>
PR target/33184
* config/m32c/m32c.c (m32c_eh_return_data_regno): Leave an address
register for reload.

From-SVN: r128741
parent 18ff3013
2007-09-24 Rask Ingemann Lambertsen <rask@sygehus.dk>
PR target/33184
* config/m32c/m32c.c (m32c_eh_return_data_regno): Leave an address
register for reload.
2007-09-24 Danny Smith <dannysmith@user.sourceforge.net>
PR c++/14688
......@@ -1127,7 +1127,10 @@ m32c_eh_return_data_regno (int n)
case 0:
return A0_REGNO;
case 1:
return A1_REGNO;
if (TARGET_A16)
return R3_REGNO;
else
return R1_REGNO;
default:
return INVALID_REGNUM;
}
......
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