| Index: src/compiler/register-allocator.h
|
| diff --git a/src/compiler/register-allocator.h b/src/compiler/register-allocator.h
|
| index 760bbabbe0d4fdd968924efaa25e15eb89c680b4..2229b2221701d519b4ddbe4375f42c5e27caeb94 100644
|
| --- a/src/compiler/register-allocator.h
|
| +++ b/src/compiler/register-allocator.h
|
| @@ -146,7 +146,7 @@ class UseInterval final : public ZoneObject {
|
|
|
| // Split this interval at the given position without effecting the
|
| // live range that owns it. The interval must contain the position.
|
| - void SplitAt(LifetimePosition pos, Zone* zone);
|
| + UseInterval* SplitAt(LifetimePosition pos, Zone* zone);
|
|
|
| // If this interval intersects with other return smallest position
|
| // that belongs to both of them.
|
| @@ -341,8 +341,6 @@ class LiveRange final : public ZoneObject {
|
| // Shorten the most recently added interval by setting a new start.
|
| void ShortenTo(LifetimePosition start);
|
|
|
| - // True if target overlaps an existing interval.
|
| - bool HasOverlap(UseInterval* target) const;
|
| void Verify() const;
|
|
|
| void ConvertUsesToOperand(const InstructionOperand& op,
|
|
|