Do not use nostackframe with local variable in get_fsr function

git-svn-id: trunk@22326 -
This commit is contained in:
pierre 2012-09-05 12:24:45 +00:00
parent fe97069b12
commit 39e32a9b3e

View File

@ -19,12 +19,13 @@
{****************************************************************************
SPARC specific stuff
****************************************************************************}
function get_fsr : dword;assembler;nostackframe;[public, alias: 'FPC_GETFSR'];
function get_fsr : dword;assembler;[public, alias: 'FPC_GETFSR'];
var
fsr : dword;
asm
st %fsr,fsr
ld fsr,%o0
ld fsr,%l0
st %l0,__result
end;