Bug 539144 - Make formal args a jit-time const offset from fp; rm argv/argc/thisv/script/callobj (r=brendan,dvander)

This commit is contained in:
Luke Wagner
2010-08-09 22:43:33 -07:00
parent 543f8ac892
commit eb328f54e3
64 changed files with 3619 additions and 3236 deletions

View File

@@ -2056,7 +2056,7 @@ date_toJSON(JSContext *cx, uintN argc, Value *vp)
/* Step 6. */
LeaveTrace(cx);
InvokeArgsGuard args;
if (!cx->stack().pushInvokeArgs(cx, 0, args))
if (!cx->stack().pushInvokeArgs(cx, 0, &args))
return false;
args.callee() = toISO;