neslib / FastMath

Fast Math Library for Delphi
Other
165 stars 36 forks source link

line 145 wrong on Neslib.FastMath.Sse2_64.inc #3

Closed wesleybobato closed 4 years ago

wesleybobato commented 4 years ago

Hi Erik It looks like you need to replace

movq xmm0, [ARadians] per movlps xmm0, [ARadians]

Thanks. :)

neslib commented 4 years ago

Well spotted. Thanks! Although technically, both movq and movlps work in this case, movlps should be used because it is designed for floating-point values. I did that in all other places, but forgot it here.