Reviewers: Erik Corry,

Description:
Another x64 build fix. Actually builds now.

KExponentBits -> kExponentBits.

[email protected]


Please review this at http://codereview.chromium.org/2835001/show

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

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


Index: src/x64/codegen-x64.cc
===================================================================
--- src/x64/codegen-x64.cc      (revision 4858)
+++ src/x64/codegen-x64.cc      (working copy)
@@ -8369,7 +8369,7 @@
// Double to remove sign bit, shift exponent down to least significant bits.
   // and subtract bias to get the unshifted, unbiased exponent.
   __ lea(double_exponent, Operand(double_value, double_value, times_1, 0));
-  __ shr(double_exponent, Immediate(64 - HeapNumber::KExponentBits));
+  __ shr(double_exponent, Immediate(64 - HeapNumber::kExponentBits));
   __ subl(double_exponent, Immediate(HeapNumber::kExponentBias));
   // Check whether the exponent is too big for a 63 bit unsigned integer.
   __ cmpl(double_exponent, Immediate(63));


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

Reply via email to