mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 01:09:31 +02:00
+ enabled the huge pointer size test in the tptrsize.pp test
git-svn-id: trunk@28164 -
This commit is contained in:
parent
6e9720e830
commit
5097b90e39
@ -19,7 +19,7 @@ type
|
||||
PNearFsInteger = ^Integer; near 'FS';
|
||||
PNearGsInteger = ^Integer; near 'GS';
|
||||
PFarInteger = ^Integer; far;
|
||||
// PHugeInteger = ^Integer; huge;
|
||||
PHugeInteger = ^Integer; huge;
|
||||
begin
|
||||
Write('SizeOf(PNearInteger) = ');
|
||||
CheckSize(SizeOf(PNearInteger), 2);
|
||||
@ -37,8 +37,8 @@ begin
|
||||
CheckSize(SizeOf(PNearGsInteger), 2);
|
||||
Write('SizeOf(PFarInteger) = ');
|
||||
CheckSize(SizeOf(PFarInteger), 4);
|
||||
{ Write('SizeOf(PHugeInteger) = ');
|
||||
CheckSize(SizeOf(PHugeInteger), 4);}
|
||||
Write('SizeOf(PHugeInteger) = ');
|
||||
CheckSize(SizeOf(PHugeInteger), 4);
|
||||
|
||||
Write('SizeOf(NearPointer) = ');
|
||||
CheckSize(SizeOf(NearPointer), 2);
|
||||
|
Loading…
Reference in New Issue
Block a user