diff --git a/js/src/methodjit/Compiler.cpp b/js/src/methodjit/Compiler.cpp index 4f2cd4f6dfc..113b29e08ec 100644 --- a/js/src/methodjit/Compiler.cpp +++ b/js/src/methodjit/Compiler.cpp @@ -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)