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
This commit is contained in:
Bernd Schmidt 2006-03-13 14:54:41 +00:00 committed by Bernd Schmidt
parent 3feaea007d
commit a94aa2725e
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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