mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 12:28:08 +02:00
18 lines
269 B
ObjectPascal
18 lines
269 B
ObjectPascal
{ %skiptarget=android }
|
|
{ %cpu=i386 }
|
|
{ %OPT=-Cg- }
|
|
|
|
{$asmmode intel}
|
|
|
|
procedure SmallForwardMove_3; assembler;
|
|
asm
|
|
jmp dword ptr [@@FwdJumpTable+ecx*4]
|
|
nop {Align Jump Table}
|
|
@@Done:
|
|
@@FwdJumpTable:
|
|
dd @@Done {Removes need to test for zero size move}
|
|
end;
|
|
|
|
begin
|
|
end.
|