mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 20:19:26 +02:00
13 lines
211 B
ObjectPascal
13 lines
211 B
ObjectPascal
{ %CPU=x86_64 }
|
|
{ %fail }
|
|
|
|
// in 64-bit mode is needed exact size of memory operand (32- or 64 bit)
|
|
{$asmmode intel}
|
|
procedure test; assembler; nostackframe;
|
|
asm
|
|
vcvtsi2ss xmm0, xmm0, [RAX]
|
|
end;
|
|
|
|
begin
|
|
end.
|