[JAEGER] Handle JSOP_POPV; re=dvander.

This commit is contained in:
Sean Stangl 2010-06-02 14:11:46 -07:00
parent e30e08a407
commit 29eb2211f9

View File

@ -289,6 +289,14 @@ mjit::Compiler::generateMethod()
BEGIN_CASE(JSOP_NOP)
END_CASE(JSOP_NOP)
BEGIN_CASE(JSOP_POPV)
{
FrameEntry *fe = frame.peek(-1);
frame.storeTo(fe, Address(Assembler::FpReg, offsetof(JSStackFrame, rval)), true);
frame.pop();
}
END_CASE(JSOP_POPV)
BEGIN_CASE(JSOP_RETURN)
{
/* Safe point! */