mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-01 21:22:38 +02:00
17 lines
256 B
ObjectPascal
17 lines
256 B
ObjectPascal
{ %fail }
|
|
{ %cpu=i386 }
|
|
|
|
{$asmmode intel}
|
|
|
|
procedure SmallForwardMove_3; assembler;
|
|
asm
|
|
jmp dword ptr [@@FwdJumpTable+@@FwdJumpTable+ecx*4]
|
|
nop {Align Jump Table}
|
|
@@Done:
|
|
@@FwdJumpTable:
|
|
dd @@Done {Removes need to test for zero size move}
|
|
end;
|
|
|
|
begin
|
|
end.
|