Revision: 17538
Author:   [email protected]
Date:     Thu Nov  7 07:17:57 2013 UTC
Log:      Fix WIN64 build

Review URL: https://codereview.chromium.org/63703002

Patch from Haitao Feng <[email protected]>.
http://code.google.com/p/v8/source/detail?r=17538

Modified:
 /branches/bleeding_edge/src/x64/code-stubs-x64.cc

=======================================
--- /branches/bleeding_edge/src/x64/code-stubs-x64.cc Thu Nov 7 02:08:53 2013 UTC +++ /branches/bleeding_edge/src/x64/code-stubs-x64.cc Thu Nov 7 07:17:57 2013 UTC
@@ -2834,7 +2834,7 @@
     // Return result in single register (rax).
     __ movq(rcx, r14);  // argc.
     __ movq(rdx, r15);  // argv.
-    __ movq(r8, ExternalReference::isolate_address(masm->isolate()));
+    __ Move(r8, ExternalReference::isolate_address(masm->isolate()));
   } else {
     ASSERT_EQ(2, result_size_);
     // Pass a pointer to the result location as the first argument.
@@ -2842,7 +2842,7 @@
     // Pass a pointer to the Arguments object as the second argument.
     __ movq(rdx, r14);  // argc.
     __ movq(r8, r15);   // argv.
-    __ movq(r9, ExternalReference::isolate_address(masm->isolate()));
+    __ Move(r9, ExternalReference::isolate_address(masm->isolate()));
   }

 #else  // _WIN64

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to