mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 17:59:09 +02:00
* Values outside signed 32-bit can only be assigned to a 64-bit register in one instruction, not to memory
git-svn-id: trunk@19512 -
This commit is contained in:
parent
f5d2c3a446
commit
d3e50e9aa8
@ -14,7 +14,8 @@ begin
|
||||
if (test < qword($ffffffff)) then
|
||||
runerror(2);
|
||||
asm
|
||||
movq $0xffffffff,test
|
||||
movq $0xffffffff,%rax
|
||||
movq %rax,test
|
||||
end;
|
||||
if test <> $ffffffff then
|
||||
runerror(5);
|
||||
|
Loading…
Reference in New Issue
Block a user