mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 10:09:20 +02:00
* added pointer and asm field axx
This commit is contained in:
parent
be49731850
commit
dd0d54cdef
@ -56,3 +56,13 @@ Changes in the syntax or semantic of FPC:
|
|||||||
-WN make non relocatable DLL (which can retain debug info)
|
-WN make non relocatable DLL (which can retain debug info)
|
||||||
for both type of DLL the prefered image base can be specified
|
for both type of DLL the prefered image base can be specified
|
||||||
with -WB1100000 for instance to get image base at $11000000.
|
with -WB1100000 for instance to get image base at $11000000.
|
||||||
|
08/09/99 pointer addition/substraction (only available in fpc,objfpc mode)
|
||||||
|
now uses the size of the type the pointer points to, just like
|
||||||
|
inc(),dec() already did. Now inc(p) is the same as p:=p+1.
|
||||||
|
But old code can be broken by this when there is a p:=p+4 then
|
||||||
|
it's now parsed like: p:=p+4*sizeof(type). To get the old situation
|
||||||
|
you can use typecasting: p:=ptype(pointer(p)+4).
|
||||||
|
08/09/99 class/object field return their offsets in the object/class. You
|
||||||
|
must access them self with loading the object/class pointer and
|
||||||
|
then create a reference where you add the field
|
||||||
|
|
Loading…
Reference in New Issue
Block a user