Revision: 19180
Author:   [email protected]
Date:     Fri Feb  7 07:44:19 2014 UTC
Log:      Win64 fixes.

[email protected]

Review URL: https://codereview.chromium.org/157243004
http://code.google.com/p/v8/source/detail?r=19180

Modified:
 /branches/bleeding_edge/test/cctest/test-assembler-x64.cc

=======================================
--- /branches/bleeding_edge/test/cctest/test-assembler-x64.cc Fri Feb 7 07:06:13 2014 UTC +++ /branches/bleeding_edge/test/cctest/test-assembler-x64.cc Fri Feb 7 07:44:19 2014 UTC
@@ -179,10 +179,10 @@
Assembler assm(CcTest::i_isolate(), buffer, static_cast<int>(actual_size));

   __ movq(rax, Operand(arg1, 0));
-  __ movq(rdx, Operand(arg2, 0));
-  __ xchgl(rax, rdx);
+  __ movq(r11, Operand(arg2, 0));
+  __ xchgl(rax, r11);
   __ movq(Operand(arg1, 0), rax);
-  __ movq(Operand(arg2, 0), rdx);
+  __ movq(Operand(arg2, 0), r11);
   __ ret(0);

   CodeDesc desc;
@@ -279,8 +279,8 @@
   // Set rax with the ZF flag of the testl instruction.
   Label done;
   __ movq(rax, Immediate(1));
-  __ movq(rdx, Operand(arg2, 0));
-  __ testl(Operand(arg1, 0), rdx);
+  __ movq(r11, Operand(arg2, 0));
+  __ testl(Operand(arg1, 0), r11);
   __ j(zero, &done, Label::kNear);
   __ movq(rax, Immediate(0));
   __ bind(&done);

--
--
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