Revision: 7061
Author: [email protected]
Date: Fri Mar  4 04:34:05 2011
Log: Fix X64 Crankshaft error on Win64 platform, in deoptimizer-x64.cc parameter passing.
Review URL: http://codereview.chromium.org/6623013
http://code.google.com/p/v8/source/detail?r=7061

Modified:
 /branches/bleeding_edge/src/x64/deoptimizer-x64.cc

=======================================
--- /branches/bleeding_edge/src/x64/deoptimizer-x64.cc Thu Feb 24 06:22:36 2011 +++ /branches/bleeding_edge/src/x64/deoptimizer-x64.cc Fri Mar 4 04:34:05 2011
@@ -640,7 +640,7 @@
   // On windows put the argument on the stack (PrepareCallCFunction have
   // created space for this). On linux pass the argument in r8.
 #ifdef _WIN64
-  __ movq(Operand(rsp, 0 * kPointerSize), arg5);
+  __ movq(Operand(rsp, 4 * kPointerSize), arg5);
 #else
   __ movq(r8, arg5);
 #endif

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to