| Index: src/mips/lithium-codegen-mips.cc
|
| diff --git a/src/mips/lithium-codegen-mips.cc b/src/mips/lithium-codegen-mips.cc
|
| index b52d7e9d069d0abeca3f72dd54acbb39c2287274..004548997b3241f52374378a4a7e6b5f884e0f66 100644
|
| --- a/src/mips/lithium-codegen-mips.cc
|
| +++ b/src/mips/lithium-codegen-mips.cc
|
| @@ -3844,7 +3844,7 @@
|
| // Math.pow(-Infinity, 0.5) == Infinity
|
| // Math.sqrt(-Infinity) == NaN
|
| Label done;
|
| - __ Move(temp, -std::numeric_limits<double>::infinity());
|
| + __ Move(temp, std::numeric_limits<double>::infinity());
|
| __ BranchF(USE_DELAY_SLOT, &done, NULL, eq, temp, input);
|
| // Set up Infinity in the delay slot.
|
| // result is overwritten if the branch is not taken.
|
|
|