зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1103830: Support 0x40 prefix byte (plain REX). r=m_kato
--HG-- extra : rebase_source : affded50f428e9295b2eda4b311ebd0c2677a138
This commit is contained in:
Родитель
e8e248c3de
Коммит
ff75043656
|
@ -432,8 +432,9 @@ protected:
|
||||||
} else {
|
} else {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else if (origBytes[nBytes] == 0x41) {
|
} else if (origBytes[nBytes] == 0x40 ||
|
||||||
// REX.B
|
origBytes[nBytes] == 0x41) {
|
||||||
|
// Plain REX or REX.B
|
||||||
nBytes++;
|
nBytes++;
|
||||||
|
|
||||||
if ((origBytes[nBytes] & 0xf0) == 0x50) {
|
if ((origBytes[nBytes] & 0xf0) == 0x50) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче