Reviewers: Benedikt Meurer,

Message:
PTAL, this fixes performance regression in EarleyBoyer.

Description:
Fix typo in r25689 (Refactor Map::ConstructionCount.)

BUG=chromium:439868
LOG=N

Please review this at https://codereview.chromium.org/779293003/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+1, -1 lines):
  M src/objects.h


Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 2b15eb4b9b8495bec4210b559a4d4f09b326adbd..c6f8b10a9e4563f4896a4fa227aa498a28e00af1 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -5677,7 +5677,7 @@ class Map: public HeapObject {
   // This counter is used for in-object slack tracking and for map aging.
   // The in-object slack tracking is considered enabled when the counter is
   // in the range [kSlackTrackingCounterStart, kSlackTrackingCounterEnd].
-  class Counter : public BitField<bool, 28, 4> {};
+  class Counter : public BitField<int, 28, 4> {};
   static const int kSlackTrackingCounterStart = 14;
   static const int kSlackTrackingCounterEnd = 8;
   static const int kRetainingCounterStart = kSlackTrackingCounterEnd - 1;


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to