Chromium Code Reviews| Index: src/compiler/register-allocator.h |
| diff --git a/src/compiler/register-allocator.h b/src/compiler/register-allocator.h |
| index afbc5a3f89d428801c1ec3d71d4e263d487d96b6..e0d080e73168a2f12654ea32c50003a7f45b742d 100644 |
| --- a/src/compiler/register-allocator.h |
| +++ b/src/compiler/register-allocator.h |
| @@ -695,8 +695,8 @@ class SpillRange final : public ZoneObject { |
| return live_ranges_; |
| } |
| ZoneVector<TopLevelLiveRange*>& live_ranges() { return live_ranges_; } |
| + // Currently, only 4 or 8 byte slots are supported. |
|
Mircea Trofin
2016/06/30 23:58:29
is this a //TODO ?
bbudge
2016/07/01 00:12:06
It's kind of strange, since byte_width can actuall
|
| int byte_width() const { return byte_width_; } |
| - RegisterKind kind() const { return kind_; } |
| void Print() const; |
| private: |
| @@ -710,7 +710,6 @@ class SpillRange final : public ZoneObject { |
| LifetimePosition end_position_; |
| int assigned_slot_; |
| int byte_width_; |
| - RegisterKind kind_; |
| DISALLOW_COPY_AND_ASSIGN(SpillRange); |
| }; |