fpc/tests/webtbf/tw3931b.pp
2005-12-20 08:11:59 +00:00

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.