Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index 80f9f0b49af0866250f99424541de692356ff2d7..54aed57b89bc243bf9b6fb72a0211164bf99e494 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -2582,7 +2582,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); |
} |