mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-07 19:50:17 +02:00
* set basic constants for address sizes etc. correctly for sparc64
git-svn-id: trunk@36520 -
This commit is contained in:
parent
fd698a22f4
commit
91994ef404
@ -218,12 +218,21 @@ uses
|
||||
Default generic sizes
|
||||
*****************************************************************************}
|
||||
|
||||
{$ifdef SPARC64}
|
||||
{# Defines the default address size for a processor, }
|
||||
OS_ADDR = OS_64;
|
||||
{# the natural int size for a processor,
|
||||
has to match osuinttype/ossinttype as initialized in psystem }
|
||||
OS_INT = OS_64;
|
||||
OS_SINT = OS_S64;
|
||||
{$else SPARC64}
|
||||
{# Defines the default address size for a processor, }
|
||||
OS_ADDR = OS_32;
|
||||
{# the natural int size for a processor,
|
||||
has to match osuinttype/ossinttype as initialized in psystem }
|
||||
OS_INT = OS_32;
|
||||
OS_SINT = OS_S32;
|
||||
{$endif SPARC64}
|
||||
{# the maximum float size for a processor, }
|
||||
OS_FLOAT = OS_F64;
|
||||
{# the size of a vector register for a processor }
|
||||
|
Loading…
Reference in New Issue
Block a user