| Index: src/compiler/live-range-separator.cc
|
| diff --git a/src/compiler/live-range-separator.cc b/src/compiler/live-range-separator.cc
|
| index 6591d71e72b3f66a309452cb4d88ea2d2f2109bb..d81885f68f6fd07b4f207db24cb4cc26e3f771bf 100644
|
| --- a/src/compiler/live-range-separator.cc
|
| +++ b/src/compiler/live-range-separator.cc
|
| @@ -51,8 +51,6 @@
|
| 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);
|
| }
|
| }
|
| @@ -114,9 +112,8 @@
|
| 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, last_cut);
|
| + CreateSplinter(range, data, first_cut, range->End());
|
| }
|
| }
|
| } // namespace
|
|
|