mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:47:53 +02:00

* Optimized the opcode representation of movq and remaining 3DNow instructions * Disallow immediates not fitting in 32 bits (Mantis #14685) + test * Disallow push/pop with 32-bit operands in x86_64 + test git-svn-id: trunk@17490 -
16 lines
239 B
ObjectPascal
16 lines
239 B
ObjectPascal
{ %CPU=x86_64 }
|
|
{ %fail }
|
|
|
|
// push and pop with 32-bit operands aren't encodable in x86_64
|
|
{$asmmode att}
|
|
procedure test; assembler; nostackframe;
|
|
asm
|
|
push %eax
|
|
pop %r8d
|
|
pushl (%rax)
|
|
popl (%r8)
|
|
end;
|
|
|
|
begin
|
|
end.
|