mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-11 16:31:04 +02:00
* use 32 bit int->string conversions for non-64 bit constants on 32 bit
platforms git-svn-id: trunk@15517 -
This commit is contained in:
parent
d432023cf6
commit
ad93588fa1
@ -865,7 +865,12 @@ implementation
|
||||
s:=s+tostr_with_plus(tai_const(hp).value);
|
||||
end
|
||||
else
|
||||
{$ifdef cpu64bitaddr}
|
||||
s:=tostr(tai_const(hp).value);
|
||||
{$else cpu64bitaddr}
|
||||
{ 64 bit constants are already handled above in this case }
|
||||
s:=tostr(longint(tai_const(hp).value));
|
||||
{$endif cpu64bitaddr}
|
||||
AsmWrite(s);
|
||||
inc(l,length(s));
|
||||
{ Values with symbols are written on a single line to improve
|
||||
|
Loading…
Reference in New Issue
Block a user