Title: [173374] trunk/Source/WTF
Revision
173374
Author
[email protected]
Date
2014-09-08 07:26:48 -0700 (Mon, 08 Sep 2014)

Log Message

Speculative build fix after r173364.

* wtf/dtoa/strtod.cc:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (173373 => 173374)


--- trunk/Source/WTF/ChangeLog	2014-09-08 10:01:15 UTC (rev 173373)
+++ trunk/Source/WTF/ChangeLog	2014-09-08 14:26:48 UTC (rev 173374)
@@ -1,3 +1,9 @@
+2014-09-08  Jessie Berlin  <[email protected]>
+
+        Speculative build fix after r173364.
+
+        * wtf/dtoa/strtod.cc:
+
 2014-09-07  Maciej Stachowiak  <[email protected]>
 
         Introduce COMPILER_QUIRK(CONSIDERS_UNREACHABLE_CODE) and use it

Modified: trunk/Source/WTF/wtf/dtoa/strtod.cc (173373 => 173374)


--- trunk/Source/WTF/wtf/dtoa/strtod.cc	2014-09-08 10:01:15 UTC (rev 173373)
+++ trunk/Source/WTF/wtf/dtoa/strtod.cc	2014-09-08 14:26:48 UTC (rev 173374)
@@ -184,7 +184,7 @@
         // Note that the ARM simulator is compiled for 32bits. It therefore exhibits
         // the same problem.
         return false;
-#endif
+#else
         if (trimmed.length() <= kMaxExactDoubleIntegerDecimalDigits) {
             int read_digits;
             // The trimmed input fits into a double.
@@ -222,6 +222,7 @@
             }
         }
         return false;
+#endif
     }
     
     
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to