fpc/tests/webtbs/tw13343.pp
Jonas Maebe 630aa5c493 * do not use voidtype for temporary parameter/result locations when
inlining, because that results in alignment settings of "0"
    (voidtype.savesize = 0 -> size2align(0) = 0), which is interpreted
    by the code generators as unaligned (and is actually even invalid
    nowadays). This caused errors on NDS when writing to memory mapped
    I/O devices (mantis #13343)

git-svn-id: trunk@12916 -
2009-03-18 22:25:06 +00:00

27 lines
598 B
ObjectPascal

{ %interactive }
{$inline on}
uses
ctypes;
const
MATRIX_TRANSLATE : pcint32 = pointer($04000470);
function floattof32(n: cfloat): cint32; inline;
begin
floattof32 := cint32(n);
end;
procedure glTranslate3f32({ x, y,} z: cint32); inline;
begin
MATRIX_TRANSLATE^ := z;
end;
begin
{ check that the inlined version of glTranslate3f32 does *NOT* perform
an unaligned store (i.e., make sure it performs one 4 byte store
rather than 4 one byte stores on platforms that require aligned memory
accesses)
}
glTranslate3f32(floattof32(-1.0));
end.