fpc/tests/test/tasm6.pp
sergei 9e8a31193b x86 assembler:
* 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 -
2011-05-17 20:06:12 +00:00

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.