mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 11:49:23 +02:00
* Avoid warning for i386 cpu
git-svn-id: trunk@17851 -
This commit is contained in:
parent
47ff755068
commit
3fd3cc8099
@ -249,6 +249,7 @@ interface
|
||||
(taicpu(hp).oper[0]^.typ = top_const) then
|
||||
begin
|
||||
val := taicpu(hp).oper[0]^.val;
|
||||
{$ifdef x86_64}
|
||||
if (val > int64($7fffffff)) and (val < int64($100000000)) then
|
||||
begin
|
||||
owner.AsmWrite(target_asm.comment);
|
||||
@ -262,6 +263,7 @@ interface
|
||||
else
|
||||
internalerror(20100902);
|
||||
end;
|
||||
{$endif x86_64}
|
||||
end;
|
||||
owner.AsmWrite(#9);
|
||||
{ movsd should not be translated to movsl when there
|
||||
|
Loading…
Reference in New Issue
Block a user