* make sure to preserve edi in free_memory_block

git-svn-id: trunk@8255 -
This commit is contained in:
Tomas Hajny 2007-08-09 18:41:27 +00:00
parent 1967deb137
commit 05b3c0311b

View File

@ -849,6 +849,7 @@ interface
function free_memory_block(blockhandle : longint) : boolean;
begin
asm
pushl %edi
pushl %esi
movl blockhandle,%esi
movl %esi,%edi
@ -859,6 +860,7 @@ interface
call test_int31
movb %al,__RESULT
popl %esi
popl %edi
end;
end;