mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-16 03:30:34 +01:00
Not sure how it ever worked, nor how exactly symtable ppu entries
work -- but it's now stored with the recorddef (which also means
that bitpacking is disabled currently for objects and classes,
since they are based on tabstractrecorddef rather than trecorddef)
git-svn-id: trunk@4679 -
18 lines
145 B
ObjectPascal
18 lines
145 B
ObjectPascal
{ %norun }
|
|
|
|
{$mode macpas}
|
|
unit tw7438;
|
|
|
|
interface
|
|
|
|
type
|
|
tr = bitpacked record
|
|
l1: longint;
|
|
l2: longint;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|