mirror of
https://github.com/bitdefender/bddisasm.git
synced 2024-12-23 14:38:22 +00:00
Handle Ignore ER bit in instruction attributes.
This commit is contained in:
parent
7ddf7e448a
commit
6c248cc4c1
@ -3546,7 +3546,7 @@ NdGetVectorLength(
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
if (Instrux->HasEvex && Instrux->Exs.bm && (Instrux->ModRm.mod == 3) &&
|
if (Instrux->HasEvex && Instrux->Exs.bm && (Instrux->ModRm.mod == 3) &&
|
||||||
(ND_ER_SUPPORT(Instrux) || ND_SAE_SUPPORT(Instrux)))
|
(ND_ER_SUPPORT(Instrux) || ND_SAE_SUPPORT(Instrux) || !!(Instrux->Attributes & ND_FLAG_IER)))
|
||||||
{
|
{
|
||||||
// Embedded rounding present, force the vector length to 512.
|
// Embedded rounding present, force the vector length to 512.
|
||||||
if ((Instrux->TupleType == ND_TUPLE_T1S) || (Instrux->TupleType == ND_TUPLE_T1F))
|
if ((Instrux->TupleType == ND_TUPLE_T1S) || (Instrux->TupleType == ND_TUPLE_T1F))
|
||||||
|
Loading…
Reference in New Issue
Block a user