Commit 5713859c authored by yangguo@chromium.org's avatar yangguo@chromium.org

Fix typo in power_double_double

Contributed by net147@gmail.com

BUGS=
TEST=mjsunit/math-pow,mjsunit/math-sqrt

Review URL: https://chromiumcodereview.appspot.com/10116001

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11363 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 661edb44
......@@ -1163,7 +1163,7 @@ double power_double_double(double x, double y) {
if (x == 2.0) {
int y_int = static_cast<int>(y);
if (y == y_int) return ldexp(1.0, y);
if (y == y_int) return ldexp(1.0, y_int);
}
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment