Title: [292700] trunk/Source/_javascript_Core
Revision
292700
Author
cdu...@apple.com
Date
2022-04-10 22:27:02 -0700 (Sun, 10 Apr 2022)

Log Message

Unreviewed WatchOS build fix.

* runtime/MathCommon.cpp:
(JSC::fdlibmPow):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (292699 => 292700)


--- trunk/Source/_javascript_Core/ChangeLog	2022-04-11 05:23:47 UTC (rev 292699)
+++ trunk/Source/_javascript_Core/ChangeLog	2022-04-11 05:27:02 UTC (rev 292700)
@@ -5,6 +5,13 @@
         * runtime/MathCommon.cpp:
         (JSC::fdlibmPow):
 
+2022-04-10  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed WatchOS build fix.
+
+        * runtime/MathCommon.cpp:
+        (JSC::fdlibmPow):
+
 2022-04-10  Yusuke Suzuki  <ysuz...@apple.com>
 
         [JSC] DFG / FTL should be aware of JSString's String replacement

Modified: trunk/Source/_javascript_Core/runtime/MathCommon.cpp (292699 => 292700)


--- trunk/Source/_javascript_Core/runtime/MathCommon.cpp	2022-04-11 05:23:47 UTC (rev 292699)
+++ trunk/Source/_javascript_Core/runtime/MathCommon.cpp	2022-04-11 05:27:02 UTC (rev 292700)
@@ -175,11 +175,10 @@
 {
     double z,ax,z_h,z_l,p_h,p_l;
     double y1,t1,t2,r,s,t,u,v,w;
-    int i0,i,j,k,yisint,n;
+    int i,j,k,yisint,n;
     int hx,hy,ix,iy;
     unsigned lx,ly;
 
-    i0 = ((*(const int*)&one)>>29)^1;
     hx = __HI(x); lx = __LO(x);
     hy = __HI(y); ly = __LO(y);
     ix = hx&0x7fffffff;  iy = hy&0x7fffffff;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to