Reviewers: Yang, Description: Fix typo in power_double_double
Contributed by [email protected] BUGS= TEST=mjsunit/math-pow,mjsunit/math-sqrt Please review this at https://chromiumcodereview.appspot.com/10116001/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/assembler.cc Index: src/assembler.cc =================================================================== --- src/assembler.cc (revision 11362) +++ src/assembler.cc (working copy) @@ -1163,7 +1163,7 @@ 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 -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
