| Index: src/compiler/live-range-separator.cc
|
| diff --git a/src/compiler/live-range-separator.cc b/src/compiler/live-range-separator.cc
|
| index d81885f68f6fd07b4f207db24cb4cc26e3f771bf..6591d71e72b3f66a309452cb4d88ea2d2f2109bb 100644
|
| --- a/src/compiler/live-range-separator.cc
|
| +++ b/src/compiler/live-range-separator.cc
|
| @@ -51,6 +51,8 @@ void CreateSplinter(TopLevelLiveRange *range, RegisterAllocationData *data,
|
| range->SetSplinter(splinter);
|
| }
|
| Zone *zone = data->allocation_zone();
|
| + TRACE("creating splinter for range %d between %d and %d\n", range->vreg(),
|
| + start.ToInstructionIndex(), end.ToInstructionIndex());
|
| range->Splinter(start, end, zone);
|
| }
|
| }
|
| @@ -112,8 +114,9 @@ void SplinterLiveRange(TopLevelLiveRange *range, RegisterAllocationData *data) {
|
| interval = next_interval;
|
| }
|
| // When the range ends in deferred blocks, first_cut will be valid here.
|
| + // Splinter from there to the last instruction that was in a deferred block.
|
| if (first_cut.IsValid()) {
|
| - CreateSplinter(range, data, first_cut, range->End());
|
| + CreateSplinter(range, data, first_cut, last_cut);
|
| }
|
| }
|
| } // namespace
|
|
|