mirror of
https://github.com/herumi/xbyak
synced 2024-11-20 16:06:14 -07:00
fix detection of AVX10
This commit is contained in:
parent
48551f5cc3
commit
e2d36c662c
1 changed files with 1 additions and 1 deletions
|
@ -635,7 +635,7 @@ public:
|
|||
if (EDX & (1U << 21)) type_ |= tAPX_F;
|
||||
}
|
||||
}
|
||||
if (has(tAVX10) && maxNum >= 24) {
|
||||
if (has(tAVX10) && maxNum >= 0x24) {
|
||||
getCpuidEx(0x24, 0, data);
|
||||
avx10version_ = EBX & mask(7);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue