[JAEGER] Added JSOP_PUSH.

This commit is contained in:
David Anderson 2010-06-08 18:16:36 -07:00
parent 1d2c54e953
commit 674313aca9

View File

@ -295,6 +295,10 @@ mjit::Compiler::generateMethod()
BEGIN_CASE(JSOP_NOP)
END_CASE(JSOP_NOP)
BEGIN_CASE(JSOP_PUSH)
frame.push(UndefinedTag());
END_CASE(JSOP_PUSH)
BEGIN_CASE(JSOP_POPV)
{
FrameEntry *fe = frame.peek(-1);