Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index da892745d3411a8020fe9829ae09706fad31b578..0c85f8b89328af93d2d297be895749cf09468bee 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -858,7 +858,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()) { |