| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index 15152782705f7e5993493b3dff6b9ef4f446b159..88a5063a95ad3a39751404f8398c1104dd2d95b6 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -873,7 +873,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()) {
|
|
|