* Fix nostackframe related problems

git-svn-id: trunk@22719 -
This commit is contained in:
pierre 2012-10-18 11:19:27 +00:00
parent 7bd7cf275c
commit 0b63af56aa

View File

@ -17,16 +17,12 @@
MIPS specific stuff
****************************************************************************}
function get_fsr : dword;assembler;nostackframe;[public, alias: 'FPC_GETFSR'];
var
fsr : dword;
asm
cfc1 $2,$31
end;
procedure set_fsr(fsr : dword);assembler;[public, alias: 'FPC_SETFSR'];
var
_fsr : dword;
procedure set_fsr(fsr : dword);assembler;nostackframe;[public, alias: 'FPC_SETFSR'];
asm
ctc1 $4,$31
end;