From b63f5cf4d90ee124bf546aeb9bbc3c83c996a0ab Mon Sep 17 00:00:00 2001 From: "ager@chromium.org" Date: Tue, 12 Jan 2010 11:56:19 +0000 Subject: [PATCH] Reapply the parts of revision 3545 that did not work because of broken fixups code on ARM. Review URL: http://codereview.chromium.org/545025 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3583 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/runtime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime.js b/src/runtime.js index ce2f197..3756aa3 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -430,7 +430,7 @@ function APPLY_PREPARE(args) { } } - length = (args == null) ? 0 : %ToUint32(args.length); + length = (args == null) ? 0 : TO_UINT32(args.length); // We can handle any number of apply arguments if the stack is // big enough, but sanity check the value to avoid overflow when -- 2.7.4