Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index 6cffc1c1ecb2ef6a8219f69c5397f8cc9059ee6f..3775f0ad4d4672bfcf5c73fdf401e6d164a8b31b 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -2573,7 +2573,7 @@ LInstruction* LChunkBuilder::DoToFastProperties(HToFastProperties* instr) { |
LInstruction* LChunkBuilder::DoTypeof(HTypeof* instr) { |
LOperand* context = UseFixed(instr->context(), rsi); |
- LOperand* value = UseAtStart(instr->value()); |
+ LOperand* value = UseFixed(instr->value(), rbx); |
LTypeof* result = new(zone()) LTypeof(context, value); |
return MarkAsCall(DefineFixed(result, rax), instr); |
} |