| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index d816106206bfcacbd330935f0e9ab3c78660761a..31f608345be255fceb5b5ab066677fe3835535f5 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -1153,7 +1153,7 @@ LInstruction* LChunkBuilder::DoUnaryMathOperation(HUnaryMathOperation* instr) {
|
| LOperand* input = UseFixedDouble(instr->value(), d2);
|
| LUnaryMathOperation* result = new LUnaryMathOperation(input, NULL);
|
| return MarkAsCall(DefineFixedDouble(result, d2), instr);
|
| - } if (op == kMathPowHalf) {
|
| + } else if (op == kMathPowHalf) {
|
| LOperand* input = UseFixedDouble(instr->value(), d2);
|
| LOperand* temp = FixedTemp(d3);
|
| LUnaryMathOperation* result = new LUnaryMathOperation(input, temp);
|
|
|