Commit a94aa272 by Bernd Schmidt Committed by Bernd Schmidt

lib1funcs.asm (___umodsi3): Use stack to save contents of RETS.

	* config/bfin/lib1funcs.asm (___umodsi3): Use stack to save contents
	of RETS.

From-SVN: r112003
parent 3feaea00
2006-03-13 Bernd Schmidt <bernd.schmidt@analog.com>
* config/bfin/lib1funcs.asm (___umodsi3): Use stack to save contents
of RETS.
2006-03-13 Eric Botcazou <ebotcazou@adacore.com>
PR middle-end/18859
......
......@@ -111,10 +111,10 @@ ___udivsi3:
.type ___umodsi3, STT_FUNC;
___umodsi3:
P1 = RETS;
CALL ___udivsi3;
[--SP] = RETS;
CALL ___udivsi3;
R0 = R3;
RETS = P1;
RTS;
RETS = [SP++];
RTS;
#endif
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