| Index: src/ia32/lithium-ia32.cc
|
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc
|
| index 0800823fdb3e2401d9cda7c6d34eb26fa7f1500a..94d6f4f0b43ead6892464c6b11ca3970caea63b3 100644
|
| --- a/src/ia32/lithium-ia32.cc
|
| +++ b/src/ia32/lithium-ia32.cc
|
| @@ -1282,10 +1282,9 @@ LInstruction* LChunkBuilder::DoMathFloor(HUnaryMathOperation* instr) {
|
|
|
|
|
| LInstruction* LChunkBuilder::DoMathRound(HUnaryMathOperation* instr) {
|
| - LOperand* context = UseAny(instr->context());
|
| LOperand* input = UseRegister(instr->value());
|
| LOperand* temp = FixedTemp(xmm4);
|
| - LMathRound* result = new(zone()) LMathRound(context, input, temp);
|
| + LMathRound* result = new(zone()) LMathRound(input, temp);
|
| return AssignEnvironment(DefineAsRegister(result));
|
| }
|
|
|
| @@ -1347,10 +1346,9 @@ LInstruction* LChunkBuilder::DoMathSqrt(HUnaryMathOperation* instr) {
|
|
|
|
|
| LInstruction* LChunkBuilder::DoMathPowHalf(HUnaryMathOperation* instr) {
|
| - LOperand* context = UseAny(instr->context());
|
| LOperand* input = UseRegisterAtStart(instr->value());
|
| LOperand* temp = TempRegister();
|
| - LMathPowHalf* result = new(zone()) LMathPowHalf(context, input, temp);
|
| + LMathPowHalf* result = new(zone()) LMathPowHalf(input, temp);
|
| return DefineSameAsFirst(result);
|
| }
|
|
|
| @@ -2098,12 +2096,10 @@ LInstruction* LChunkBuilder::DoClampToUint8(HClampToUint8* instr) {
|
|
|
|
|
| LInstruction* LChunkBuilder::DoReturn(HReturn* instr) {
|
| - LOperand* context = info()->IsStub()
|
| - ? UseFixed(instr->context(), esi)
|
| - : NULL;
|
| + LOperand* context = info()->IsStub() ? UseFixed(instr->context(), esi) : NULL;
|
| LOperand* parameter_count = UseRegisterOrConstant(instr->parameter_count());
|
| - return new(zone()) LReturn(UseFixed(instr->value(), eax), context,
|
| - parameter_count);
|
| + return new(zone()) LReturn(
|
| + UseFixed(instr->value(), eax), context, parameter_count);
|
| }
|
|
|
|
|
|
|