Title: [292698] trunk/Source/_javascript_Core
Revision
292698
Author
cdu...@apple.com
Date
2022-04-10 22:21:44 -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 (292697 => 292698)


--- trunk/Source/_javascript_Core/ChangeLog	2022-04-11 04:57:33 UTC (rev 292697)
+++ trunk/Source/_javascript_Core/ChangeLog	2022-04-11 05:21:44 UTC (rev 292698)
@@ -1,3 +1,10 @@
+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 (292697 => 292698)


--- trunk/Source/_javascript_Core/runtime/MathCommon.cpp	2022-04-11 04:57:33 UTC (rev 292697)
+++ trunk/Source/_javascript_Core/runtime/MathCommon.cpp	2022-04-11 05:21:44 UTC (rev 292698)
@@ -175,11 +175,11 @@
 {
     double z,ax,z_h,z_l,p_h,p_l;
     double y1,t1,t2,r,s,t,u,v,w;
-    int i0,i1,i,j,k,yisint,n;
+    int i0,i,j,k,yisint,n;
     int hx,hy,ix,iy;
     unsigned lx,ly;
 
-    i0 = ((*(const int*)&one)>>29)^1; i1=1-i0;
+    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