зеркало из 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 {
|
||||
return;
|
||||
}
|
||||
} else if (origBytes[nBytes] == 0x41) {
|
||||
// REX.B
|
||||
} else if (origBytes[nBytes] == 0x40 ||
|
||||
origBytes[nBytes] == 0x41) {
|
||||
// Plain REX or REX.B
|
||||
nBytes++;
|
||||
|
||||
if ((origBytes[nBytes] & 0xf0) == 0x50) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче