Reviewers: Karl Klose,

Description:
Fix typo that breaks compilation on x64.

Committed: http://code.google.com/p/v8/source/detail?r=6336

Reviewer: Karl Klose

Please review this at http://codereview.chromium.org/6342003/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     src/x64/lithium-codegen-x64.cc


Index: src/x64/lithium-codegen-x64.cc
===================================================================
--- src/x64/lithium-codegen-x64.cc      (revision 6334)
+++ src/x64/lithium-codegen-x64.cc      (working copy)
@@ -277,7 +277,7 @@
       for (int offset = slots * kPointerSize - kPageSize;
            offset > 0;
            offset -= kPageSize) {
-        __ moveq(Operand(rsp, offset), rax);
+        __ movq(Operand(rsp, offset), rax);
       }
 #endif
     }


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

Reply via email to