Reviewers: Vitaly, Description: Merge bleeding edge r6036 to 2.4 branch: Fix x64 compilation.
[email protected], Committed: http://code.google.com/p/v8/source/detail?r=6121 Please review this at http://codereview.chromium.org/6093004/ SVN Base: http://v8.googlecode.com/svn/branches/2.4/ 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 4 #define BUILD_NUMBER 9 -#define PATCH_LEVEL 18 +#define PATCH_LEVEL 19 #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) @@ -191,7 +191,7 @@ void FullCodeGenerator::ClearAccumulator() { - __ xor(rax, rax); + __ xor_(rax, rax); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
