BrianGladman / mpir

Multiple Precision Integers and Rationals
GNU General Public License v3.0
75 stars 36 forks source link

Errors in x86_64w/haswell/avx/and_n.asm #22

Closed xnop closed 2 years ago

xnop commented 2 years ago

Hello,

I tried to compile the mpir library for haswell_avx (for Windows & VS2019) and I got 2 errors with the following file: mpn/x86_64w/haswell/avx/and_n.asm

SizeB and CountB are undefined.

When comparing with the other architecture in: mpn/x86_64w/broadwell/avx/and_n.asm

the following values are defined:

%define SizeB R9B %define CountB AL

Hope this helps, Daniel

BrianGladman commented 2 years ago

Hi Daniel

Thanks for picking this up and suggesting a fix. I have now committed this change.

Brian