mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-28 22:20:19 +02:00
* support non-power-of-two records that have to be passed in MM registers
in a_load_ref_cgpara() git-svn-id: trunk@32905 -
This commit is contained in:
parent
49a83b2872
commit
ae7b17890a
@ -262,7 +262,10 @@ implementation
|
|||||||
a_loadmm_ref_reg(list,location^.def,location^.def,tmpref,location^.register,mms_movescalar);
|
a_loadmm_ref_reg(list,location^.def,location^.def,tmpref,location^.register,mms_movescalar);
|
||||||
OS_M8..OS_M128,
|
OS_M8..OS_M128,
|
||||||
OS_MS8..OS_MS128,
|
OS_MS8..OS_MS128,
|
||||||
OS_32..OS_128:
|
OS_32..OS_128,
|
||||||
|
{ OS_NO is for records of non-power-of-two sizes that have to
|
||||||
|
be passed in MM registers -> never scalar floats }
|
||||||
|
OS_NO:
|
||||||
a_loadmm_ref_reg(list,location^.def,location^.def,tmpref,location^.register,nil);
|
a_loadmm_ref_reg(list,location^.def,location^.def,tmpref,location^.register,nil);
|
||||||
else
|
else
|
||||||
internalerror(2010053101);
|
internalerror(2010053101);
|
||||||
|
Loading…
Reference in New Issue
Block a user