Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index 6ff14315517478155584752ad6abcb51f264ae9c..09fe26ade46be189ea033e71f0de188b74b1afdc 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -2601,7 +2601,7 @@ LInstruction* LChunkBuilder::DoToFastProperties(HToFastProperties* instr) { |
LInstruction* LChunkBuilder::DoTypeof(HTypeof* instr) { |
LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* value = UseAtStart(instr->value()); |
+ LOperand* value = UseFixed(instr->value(), ebx); |
LTypeof* result = new(zone()) LTypeof(context, value); |
return MarkAsCall(DefineFixed(result, eax), instr); |
} |