Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index 7bc06f7eb8dd0761e9d5023cdc0f32b42fb5691c..5b2a5f5ec1048b662522ba584aa637f3f969162a 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -850,7 +850,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()) { |