* use ObjpasInt instead of longint in fpc_shortstr_currency (generates shorter

and more efficient code on 16 and 8-bit targets)

git-svn-id: trunk@35484 -
This commit is contained in:
nickysn 2017-02-27 01:29:52 +00:00
parent 3b723aa97f
commit 2fbe5d2a8b

View File

@ -679,7 +679,7 @@ const
MinLen = 8; { Minimal string length in scientific format }
var
buf : array[1..19] of char;
i,j,k,reslen,tlen,sign,r,point : longint;
i,j,k,reslen,tlen,sign,r,point : ObjpasInt;
ic : qword;
begin
fillchar(buf,length(buf),'0');