mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 15:29:25 +02:00
* reverted r32746: *inttype shall be the normally used integer type, os*inttype shall be the int type with the max. size of integer registers
git-svn-id: trunk@32789 -
This commit is contained in:
parent
3f2057a2f2
commit
53e89b25d1
@ -113,14 +113,14 @@ implementation
|
||||
procedure set_default_int_types;
|
||||
begin
|
||||
{$ifdef cpu64bitaddr}
|
||||
uinttype:=u64inttype;
|
||||
sinttype:=s64inttype;
|
||||
ptruinttype:=u64inttype;
|
||||
ptrsinttype:=s64inttype;
|
||||
{$endif cpu64bitaddr}
|
||||
{$ifdef cpu64bitalu}
|
||||
uinttype:=u64inttype;
|
||||
sinttype:=s64inttype;
|
||||
{$endif cpu64bitalu}
|
||||
{$ifdef cpu32bitaddr}
|
||||
uinttype:=u32inttype;
|
||||
sinttype:=s32inttype;
|
||||
ptruinttype:=u32inttype;
|
||||
ptrsinttype:=s32inttype;
|
||||
{$endif cpu32bitaddr}
|
||||
|
@ -1059,7 +1059,7 @@ interface
|
||||
{ we use only one variant def for every variant class }
|
||||
cvarianttype,
|
||||
colevarianttype,
|
||||
{ default integer type s32inttype on 32 bit systems, s64bittype on 64 bit systems }
|
||||
{ default integer type, normally s32inttype on 32 bit systems and s64bittype on 64 bit systems }
|
||||
sinttype,
|
||||
uinttype,
|
||||
{ integer types corresponding to OS_SINT/OS_INT }
|
||||
|
Loading…
Reference in New Issue
Block a user