| Index: src/compiler/register-allocator.cc
|
| diff --git a/src/compiler/register-allocator.cc b/src/compiler/register-allocator.cc
|
| index e33e8b37138144777a0cb111f333ca949ea20879..38e4a96b3b52c810bf87c1f5d80396d9e8a01cba 100644
|
| --- a/src/compiler/register-allocator.cc
|
| +++ b/src/compiler/register-allocator.cc
|
| @@ -2650,6 +2650,9 @@ void LinearScanAllocator::AllocateRegisters() {
|
| for (TopLevelLiveRange* current : data()->fixed_double_live_ranges()) {
|
| if (current != nullptr) AddToInactive(current);
|
| }
|
| + for (TopLevelLiveRange* current : data()->fixed_simd128_live_ranges()) {
|
| + if (current != nullptr) AddToInactive(current);
|
| + }
|
| }
|
|
|
| while (!unhandled_live_ranges().empty()) {
|
|
|