mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 978811 - Fix isFakeExitFrame to return true for entry frames. r=nbp
This commit is contained in:
parent
99d7bfa52c
commit
b545296b0f
@ -56,7 +56,8 @@ JitFrameIterator::isFakeExitFrame() const
|
||||
{
|
||||
bool res = (prevType() == JitFrame_Unwound_Rectifier ||
|
||||
prevType() == JitFrame_Unwound_IonJS ||
|
||||
prevType() == JitFrame_Unwound_BaselineStub);
|
||||
prevType() == JitFrame_Unwound_BaselineStub ||
|
||||
(prevType() == JitFrame_Entry && type() == JitFrame_Exit));
|
||||
JS_ASSERT_IF(res, type() == JitFrame_Exit || type() == JitFrame_BaselineJS);
|
||||
return res;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user