[JAEGER] Added support for JSOP_NULL.

This commit is contained in:
David Anderson 2010-06-03 15:08:21 -07:00
parent 3b0c7241d4
commit 74afc2ba2e

View File

@ -456,6 +456,10 @@ mjit::Compiler::generateMethod()
frame.push(Valueify(JSVAL_ONE));
END_CASE(JSOP_ONE)
BEGIN_CASE(JSOP_NULL)
frame.push(NullTag());
END_CASE(JSOP_NULL)
BEGIN_CASE(JSOP_FALSE)
frame.push(Value(BooleanTag(false)));
END_CASE(JSOP_FALSE)