type TComplex = packed record
real, imag: Double;
end;
When trying
movapd xmm1, DQWord ptr [C1.real]
I get an access violation while
movupd xmm1, DQWord ptr [C1.real]
works. I uncommented the {$define Align16Bytes} in Fastmm4.inc and put
FastMM4 in my dpr, is there anything else I must do?