Re: [fpc-pascal] $CODEALIGN / Dynamic Arrays

2010-05-27 Thread Jonas Maebe
On 27 May 2010, at 09:47, Helmut Hartl wrote: Does the $CODEALIGN (http://www.freepascal.org/docs-html/prog/progsu9.html ) directive influence dynamic array memory layout ? No, that directive only influences static code and data layout. I need an an aligned dynamic array of vectors for SSE

[fpc-pascal] $CODEALIGN / Dynamic Arrays

2010-05-27 Thread Helmut Hartl
Does the $CODEALIGN (http://www.freepascal.org/docs-html/prog/progsu9.html) directive influence dynamic array memory layout ? I need an an aligned dynamic array of vectors for SSE operations. If the fpc dynamic array implementation supports alignment somehow I would not need an own implementation