[JAEGER] Added JSOP_DUP2.

This commit is contained in:
David Anderson
2010-06-05 14:38:10 -07:00
parent 47f5e03ae8
commit af2d8f2bb8
3 changed files with 19 additions and 1 deletions

View File

@@ -356,6 +356,10 @@ mjit::Compiler::generateMethod()
frame.dup();
END_CASE(JSOP_DUP)
BEGIN_CASE(JSOP_DUP2)
frame.dup2();
END_CASE(JSOP_DUP2)
BEGIN_CASE(JSOP_BITAND)
jsop_bitop(op);
END_CASE(JSOP_BITAND)