mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 13:19:12 +02:00
* don't use (non-volatile) ebx in assembler routine
git-svn-id: trunk@9193 -
This commit is contained in:
parent
05d744deb1
commit
4512eede06
@ -10,11 +10,11 @@ var
|
|||||||
var
|
var
|
||||||
i : longint;
|
i : longint;
|
||||||
asm
|
asm
|
||||||
movl j,%ebx
|
movl j,%ecx
|
||||||
movl (%ebx),%eax
|
movl (%ecx),%eax
|
||||||
movl $5,i
|
movl $5,i
|
||||||
addl i,%eax
|
addl i,%eax
|
||||||
movl %eax,(%ebx)
|
movl %eax,(%ecx)
|
||||||
end;
|
end;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user