Bug 1103830: Support 0x40 prefix byte (plain REX). r=m_kato

--HG--
extra : rebase_source : affded50f428e9295b2eda4b311ebd0c2677a138
This commit is contained in:
David Major 2014-11-26 15:41:21 +13:00
Родитель e8e248c3de
Коммит ff75043656
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -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) {