Revision: 10749
Author:   [email protected]
Date:     Mon Feb 20 02:58:17 2012
Log:      Fix compile error introduced by r10723.
http://code.google.com/p/v8/source/detail?r=10749

Modified:
 /branches/3.7/src/version.cc
 /branches/3.7/src/x64/lithium-codegen-x64.cc

=======================================
--- /branches/3.7/src/version.cc        Thu Feb 16 07:06:14 2012
+++ /branches/3.7/src/version.cc        Mon Feb 20 02:58:17 2012
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     7
 #define BUILD_NUMBER      12
-#define PATCH_LEVEL       23
+#define PATCH_LEVEL       24
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0
=======================================
--- /branches/3.7/src/x64/lithium-codegen-x64.cc        Thu Feb 16 07:06:14 2012
+++ /branches/3.7/src/x64/lithium-codegen-x64.cc        Mon Feb 20 02:58:17 2012
@@ -1778,7 +1778,7 @@
// actual type and do a signed compare with the width of the type range.
     __ movq(temp, FieldOperand(input, HeapObject::kMapOffset));
     __ movzxbl(scratch, FieldOperand(temp, Map::kInstanceTypeOffset));
-    __ sub(scratch, Immediate(FIRST_NONCALLABLE_SPEC_OBJECT_TYPE));
+    __ subq(scratch, Immediate(FIRST_NONCALLABLE_SPEC_OBJECT_TYPE));
     __ cmpq(scratch, Immediate(LAST_NONCALLABLE_SPEC_OBJECT_TYPE -
                                FIRST_NONCALLABLE_SPEC_OBJECT_TYPE));
     __ j(above, is_false);

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

Reply via email to