mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-28 17:00:40 +02:00
* 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:
parent
3b723aa97f
commit
2fbe5d2a8b
@ -679,7 +679,7 @@ const
|
|||||||
MinLen = 8; { Minimal string length in scientific format }
|
MinLen = 8; { Minimal string length in scientific format }
|
||||||
var
|
var
|
||||||
buf : array[1..19] of char;
|
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;
|
ic : qword;
|
||||||
begin
|
begin
|
||||||
fillchar(buf,length(buf),'0');
|
fillchar(buf,length(buf),'0');
|
||||||
|
Loading…
Reference in New Issue
Block a user