Revision: 6121 Author: [email protected] Date: Wed Dec 29 02:14:28 2010 Log: Merge bleeding edge r6036 to 2.4 branch: Fix x64 compilation.
Review URL: http://codereview.chromium.org/6093004 http://code.google.com/p/v8/source/detail?r=6121 Modified: /branches/2.4/src/version.cc /branches/2.4/src/x64/full-codegen-x64.cc ======================================= --- /branches/2.4/src/version.cc Wed Dec 22 02:59:24 2010 +++ /branches/2.4/src/version.cc Wed Dec 29 02:14:28 2010 @@ -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 ======================================= --- /branches/2.4/src/x64/full-codegen-x64.cc Wed Dec 22 02:59:24 2010 +++ /branches/2.4/src/x64/full-codegen-x64.cc Wed Dec 29 02:14:28 2010 @@ -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
