mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 996715: Remove the code that bails when determining if the second instruction in a chunk is a branch. (r=dougc)
This commit is contained in:
parent
de64a276de
commit
5441acb4eb
@ -221,7 +221,7 @@ struct BufferSliceTail : public BufferSlice<SliceSize> {
|
||||
}
|
||||
bool isNextBranch() {
|
||||
unsigned int size = this->nodeSize;
|
||||
if (size == InstBaseSize || size >= SliceSize)
|
||||
if (size >= SliceSize)
|
||||
return false;
|
||||
int idx = size / InstBaseSize;
|
||||
return (isBranch[idx >> 3] >> (idx & 0x7)) & 1;
|
||||
|
Loading…
Reference in New Issue
Block a user