Index: src/compiler/register-allocator.h |
diff --git a/src/compiler/register-allocator.h b/src/compiler/register-allocator.h |
index 6437cebc485b8421473bf84a55c907365a77ecce..624b663c0e5236a5fb4b457e9a443825e671e161 100644 |
--- a/src/compiler/register-allocator.h |
+++ b/src/compiler/register-allocator.h |
@@ -419,7 +419,6 @@ class LiveRange : public ZoneObject { |
explicit LiveRange(int relative_id, MachineRepresentation rep, |
TopLevelLiveRange* top_level); |
- void AppendAsChild(TopLevelLiveRange* other); |
void UpdateParentForAllChildren(TopLevelLiveRange* new_top_level); |
void set_spilled(bool value) { bits_ = SpilledField::update(bits_, value); } |
@@ -606,8 +605,6 @@ class TopLevelLiveRange final : public LiveRange { |
SpillMoveInsertionList* spill_move_insertion_locations() const { |
return spill_move_insertion_locations_; |
} |
- void set_last_child(LiveRange* range) { last_child_ = range; } |
- LiveRange* last_child() const { return last_child_; } |
TopLevelLiveRange* splinter() const { return splinter_; } |
void SetSplinter(TopLevelLiveRange* splinter) { |
DCHECK_NULL(splinter_); |
@@ -643,7 +640,6 @@ class TopLevelLiveRange final : public LiveRange { |
// just for spill in a single deferred block. |
bool spilled_in_deferred_blocks_; |
int spill_start_index_; |
- LiveRange* last_child_; |
UsePosition* last_pos_; |
TopLevelLiveRange* splinter_; |
bool has_preassigned_slot_; |