Index: src/ia32/lithium-ia32.cc |
=================================================================== |
--- src/ia32/lithium-ia32.cc (revision 6669) |
+++ src/ia32/lithium-ia32.cc (working copy) |
@@ -1320,9 +1320,9 @@ |
// The temporary operand is necessary to ensure that right is not allocated |
// into edx. |
LOperand* temp = FixedTemp(edx); |
- LOperand* value = UseFixed(instr->left(), eax); |
+ LOperand* dividend = UseFixed(instr->left(), eax); |
LOperand* divisor = UseRegister(instr->right()); |
- LDivI* result = new LDivI(value, divisor, temp); |
+ LDivI* result = new LDivI(dividend, divisor, temp); |
return AssignEnvironment(DefineFixed(result, eax)); |
} else { |
ASSERT(instr->representation().IsTagged()); |