[JAEGER] Added support for JSOP_NULL.

This commit is contained in:
David Anderson
2010-06-03 15:08:21 -07:00
parent f6b9687c5d
commit 0ee58534d8

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)