Reviewers: Vitaly,

Description:
Merge bleeding edge r6036 to 2.5 branch: Fix x64 compilation.

[email protected],

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

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

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

Affected files:
  M     src/version.cc
  M     src/x64/full-codegen-x64.cc


Index: src/version.cc
===================================================================
--- src/version.cc      (revision 6120)
+++ src/version.cc      (working copy)
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     2
 #define MINOR_VERSION     5
 #define BUILD_NUMBER      9
-#define PATCH_LEVEL       5
+#define PATCH_LEVEL       6
 #define CANDIDATE_VERSION false

 // Define SONAME to have the SCons build the put a specific SONAME into the
Index: src/x64/full-codegen-x64.cc
===================================================================
--- src/x64/full-codegen-x64.cc (revision 6120)
+++ src/x64/full-codegen-x64.cc (working copy)
@@ -198,7 +198,7 @@


 void FullCodeGenerator::ClearAccumulator() {
-  __ xor(rax, rax);
+  __ xor_(rax, rax);
 }




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

Reply via email to