Revision: 3546
Author: [email protected]
Date: Wed Jan  6 07:50:34 2010
Log: Quick fix to ARM fixup issue introduced in r3545. The fixup code
seems somewhat broken on ARM, but this solves the issue for now.
I'll look into the code patching tomorrow.
Review URL: http://codereview.chromium.org/525068
http://code.google.com/p/v8/source/detail?r=3546

Modified:
 /branches/bleeding_edge/src/runtime.js

=======================================
--- /branches/bleeding_edge/src/runtime.js      Wed Jan  6 06:40:21 2010
+++ /branches/bleeding_edge/src/runtime.js      Wed Jan  6 07:50:34 2010
@@ -427,7 +427,7 @@
     }
   }

-  length = (args == null) ? 0 : TO_UINT32(args.length);
+  length = (args == null) ? 0 : %ToUint32(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
-- 
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to