| Index: src/mips/lithium-mips.cc
|
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
|
| index bbf422f4708e3aeb07c3764185bd17be4db51b58..8078ee4c721661ae9283c31febcc86f0725f0ade 100644
|
| --- a/src/mips/lithium-mips.cc
|
| +++ b/src/mips/lithium-mips.cc
|
| @@ -881,7 +881,8 @@ void LChunkBuilder::VisitInstruction(HInstruction* current) {
|
| // the it was just a plain use), so it is free to move the split child into
|
| // the same register that is used for the use-at-start.
|
| // See https://code.google.com/p/chromium/issues/detail?id=201590
|
| - if (!(instr->ClobbersRegisters() && instr->ClobbersDoubleRegisters())) {
|
| + if (!(instr->ClobbersRegisters() &&
|
| + instr->ClobbersDoubleRegisters(isolate()))) {
|
| int fixed = 0;
|
| int used_at_start = 0;
|
| for (UseIterator it(instr); !it.Done(); it.Advance()) {
|
|
|