You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like there is a small issue in file xed-ild.c.
imm_scanner() function definition is under following compile flags: #if defined(XED_SUPPORTS_AVX512) || defined(XED_SUPPORTS_KNC)
If we don't define any of these flags, the code will not compile due to imm_scanner() function call on the line 1526 in xed-ild.c:
Looks like there is a small issue in file xed-ild.c.
imm_scanner() function definition is under following compile flags:
#if defined(XED_SUPPORTS_AVX512) || defined(XED_SUPPORTS_KNC)
If we don't define any of these flags, the code will not compile due to imm_scanner() function call on the line 1526 in xed-ild.c:
xed/src/dec/xed-ild.c
Line 1526 in afbb851
Attached is the patch that seems to fix this issue for us:
fix_ild_compile_issue.tar.gz
The text was updated successfully, but these errors were encountered: