[JAEGER] Added JSOP_TRUE, JSOP_FALSE.

This commit is contained in:
David Anderson
2010-06-02 15:33:36 -07:00
parent a316ccd8eb
commit 2544755e2a
2 changed files with 9 additions and 0 deletions

View File

@@ -452,6 +452,14 @@ mjit::Compiler::generateMethod()
frame.push(Valueify(JSVAL_ONE));
END_CASE(JSOP_ONE)
BEGIN_CASE(JSOP_TRUE)
frame.push(Value(BooleanTag(true)));
END_CASE(JSOP_TRUE)
BEGIN_CASE(JSOP_FALSE)
frame.push(Value(BooleanTag(false)));
END_CASE(JSOP_FALSE)
BEGIN_CASE(JSOP_POP)
frame.pop();
END_CASE(JSOP_POP)