Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index a6f91406aeb5905967bee2a367267652c3fc8285..fa745e2f1016d3bec364636e81073772709f5f83 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -894,7 +894,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()) { |