mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 978811 - Fix isFakeExitFrame to return true for entry frames. r=nbp
This commit is contained in:
parent
2980e04f4d
commit
6251343995
@ -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