Title: [260501] trunk/Source/_javascript_Core
Revision
260501
Author
[email protected]
Date
2020-04-21 21:19:57 -0700 (Tue, 21 Apr 2020)

Log Message

Unreviewed, build fix for watchOS
https://bugs.webkit.org/show_bug.cgi?id=210832

If function is not defined, static declaration should not be declared, otherwise, unused-function-error happens.

* jsc.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (260500 => 260501)


--- trunk/Source/_javascript_Core/ChangeLog	2020-04-22 04:12:03 UTC (rev 260500)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-04-22 04:19:57 UTC (rev 260501)
@@ -1,5 +1,14 @@
 2020-04-21  Yusuke Suzuki  <[email protected]>
 
+        Unreviewed, build fix for watchOS
+        https://bugs.webkit.org/show_bug.cgi?id=210832
+
+        If function is not defined, static declaration should not be declared, otherwise, unused-function-error happens.
+
+        * jsc.cpp:
+
+2020-04-21  Yusuke Suzuki  <[email protected]>
+
         Unreviewd, speculative Windows build fix part 2
         https://bugs.webkit.org/show_bug.cgi?id=210834
 

Modified: trunk/Source/_javascript_Core/jsc.cpp (260500 => 260501)


--- trunk/Source/_javascript_Core/jsc.cpp	2020-04-22 04:12:03 UTC (rev 260500)
+++ trunk/Source/_javascript_Core/jsc.cpp	2020-04-22 04:19:57 UTC (rev 260501)
@@ -272,7 +272,9 @@
 
 static EncodedJSValue JSC_HOST_CALL functionCreateGlobalObject(JSGlobalObject*, CallFrame*);
 static EncodedJSValue JSC_HOST_CALL functionCreateHeapBigInt(JSGlobalObject*, CallFrame*);
+#if USE(BIGINT32)
 static EncodedJSValue JSC_HOST_CALL functionCreateBigInt32(JSGlobalObject*, CallFrame*);
+#endif
 
 static EncodedJSValue JSC_HOST_CALL functionPrintStdOut(JSGlobalObject*, CallFrame*);
 static EncodedJSValue JSC_HOST_CALL functionPrintStdErr(JSGlobalObject*, CallFrame*);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to