Actual rebase bustage fix (bug 603044 fallout).

This commit is contained in:
David Anderson 2010-10-18 22:31:44 -07:00
Родитель 679f5714f7
Коммит 10d8a8fb81
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -4254,7 +4254,7 @@ mjit::Compiler::jsop_instanceof()
/* This is sadly necessary because the error case needs the object. */
frame.dup();
if (!jsop_getprop(cx->runtime->atomState.classPrototypeAtom, false, false))
if (!jsop_getprop(cx->runtime->atomState.classPrototypeAtom, false))
return false;
/* Primitive prototypes are invalid. */
@ -4437,7 +4437,7 @@ mjit::Compiler::constructThis()
frame.pushTypedPayload(JSVAL_TYPE_OBJECT, calleeReg);
// Get callee.prototype.
if (!jsop_getprop(cx->runtime->atomState.classPrototypeAtom, false))
if (!jsop_getprop(cx->runtime->atomState.classPrototypeAtom, false, false))
return false;
// Reach into the proto Value and grab a register for its data.