Revision: 11363
Author:   [email protected]
Date:     Wed Apr 18 00:02:21 2012
Log:      Fix typo in power_double_double

Contributed by [email protected]

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

Review URL: https://chromiumcodereview.appspot.com/10116001
http://code.google.com/p/v8/source/detail?r=11363

Modified:
 /branches/bleeding_edge/src/assembler.cc

=======================================
--- /branches/bleeding_edge/src/assembler.cc    Tue Apr 17 09:15:20 2012
+++ /branches/bleeding_edge/src/assembler.cc    Wed Apr 18 00:02:21 2012
@@ -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

Reply via email to