translate_thumb: IsThumb16: Mask not required
This commit is contained in:
parent
72c87d11e4
commit
34cb465fc7
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ enum class ThumbInstSize {
|
|||
};
|
||||
|
||||
bool IsThumb16(u16 first_part) {
|
||||
return (first_part & 0xF800) < 0xE800;
|
||||
return first_part < 0xE800;
|
||||
}
|
||||
|
||||
bool IsUnconditionalInstruction(bool is_thumb_16, u32 instruction) {
|
||||
|
|
Loading…
Reference in a new issue