fpc/tests/tbf/tb0254a.pp
florian 0897bd154a + align(<int64>,<int64>) and align(<qword>,<qword>), resolves an issue reported on the mailing list with large records
+ tests
* trecordsymtable.insertunionst takes a asizeint parameter
* changed one aint into a asizeint

git-svn-id: trunk@35662 -
2017-03-26 09:35:56 +00:00

42 lines
1014 B
ObjectPascal

{ %CPU=i386,powerpc,arm,sparc,mips }
{ %fail }
{ test should fail on 32 bit targets but not crash }
{$MODE DELPHI} // (1) _NOT_ using delphi mode works
unit tb0254a;
{==============================================================================}
interface
type
pSExp = pointer;
aSExpArr = array[0..((MaxInt div SizeOf(pSExp)) - 1)] of pSExp;
// aSExpArr = array[0..((MaxInt div 2*SizeOf(pSExp)) - 1)] of pSExp;
// (2) using a _shorter_ array, eg. ^^ works on Ubuntu (Mac still Error)
pFoo = ^aFoo;
aFoo = record
rec: aSExpArr;
end;
function ahoppla(_x: pFoo): aSExpArr;
{==============================================================================}
implementation
type
pData = ^aData;
aData = record
offset: array[1..24] of byte; // (3) uncommenting offset works
SExpArr: aSExpArr;
end;
function ahoppla(_x: pFoo): aSExpArr;
begin
ahoppla:= pData(_x)^.SExpArr;
// ahoppla:= _x.rec; // (4) _not_ casting works on Ubuntu (Mac error)
end;
end {a}.