Commit 513d1261 authored by ulan's avatar ulan Committed by Commit bot

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

BUG=chromium:439868
LOG=N

Review URL: https://codereview.chromium.org/779293003

Cr-Commit-Position: refs/heads/master@{#25705}
parent a26a5440
...@@ -5677,7 +5677,7 @@ class Map: public HeapObject { ...@@ -5677,7 +5677,7 @@ class Map: public HeapObject {
// This counter is used for in-object slack tracking and for map aging. // 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 // The in-object slack tracking is considered enabled when the counter is
// in the range [kSlackTrackingCounterStart, kSlackTrackingCounterEnd]. // 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 kSlackTrackingCounterStart = 14;
static const int kSlackTrackingCounterEnd = 8; static const int kSlackTrackingCounterEnd = 8;
static const int kRetainingCounterStart = kSlackTrackingCounterEnd - 1; static const int kRetainingCounterStart = kSlackTrackingCounterEnd - 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment