Title: [269058] trunk/Source/WebCore
Revision
269058
Author
[email protected]
Date
2020-10-27 11:46:56 -0700 (Tue, 27 Oct 2020)

Log Message

Follow-up for: REGRESSION(r267727): Warning spam from JSC_DECLARE_CUSTOM_GETTER
https://bugs.webkit.org/show_bug.cgi?id=217585
<rdar://problem/70376946>

Unreviewed follow-up to r268587. I missed one spot that needs to use
JSC_DECLARE_JIT_OPERATION_WITHOUT_WTF_INTERNAL. This is causing warnings in various
generated bindings files.

Patch by Michael Catanzaro <[email protected]> on 2020-10-27

* bindings/scripts/CodeGeneratorJS.pm:
(GenerateImplementation):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (269057 => 269058)


--- trunk/Source/WebCore/ChangeLog	2020-10-27 18:25:55 UTC (rev 269057)
+++ trunk/Source/WebCore/ChangeLog	2020-10-27 18:46:56 UTC (rev 269058)
@@ -1,3 +1,16 @@
+2020-10-27  Michael Catanzaro  <[email protected]>
+
+        Follow-up for: REGRESSION(r267727): Warning spam from JSC_DECLARE_CUSTOM_GETTER
+        https://bugs.webkit.org/show_bug.cgi?id=217585
+        <rdar://problem/70376946>
+
+        Unreviewed follow-up to r268587. I missed one spot that needs to use
+        JSC_DECLARE_JIT_OPERATION_WITHOUT_WTF_INTERNAL. This is causing warnings in various
+        generated bindings files.
+
+        * bindings/scripts/CodeGeneratorJS.pm:
+        (GenerateImplementation):
+
 2020-10-27  Zalan Bujtas  <[email protected]>
 
         [LFC][IFC] Add support for vertical-align: -webkit-baseline-middle

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm (269057 => 269058)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm	2020-10-27 18:25:55 UTC (rev 269057)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm	2020-10-27 18:46:56 UTC (rev 269058)
@@ -4298,7 +4298,7 @@
             if ($operation->extendedAttributes->{DOMJIT}) {
                 $implIncludes{"DOMJITIDLType.h"} = 1;
                 my $nameOfFunctionWithoutTypeCheck = $codeGenerator->WK_lcfirst($functionName) . "WithoutTypeCheck";
-                my $functionSignature = "static JSC_DECLARE_JIT_OPERATION(${nameOfFunctionWithoutTypeCheck}, JSC::EncodedJSValue, (JSC::JSGlobalObject*, $className*";
+                my $functionSignature = "static JSC_DECLARE_JIT_OPERATION_WITHOUT_WTF_INTERNAL(${nameOfFunctionWithoutTypeCheck}, JSC::EncodedJSValue, (JSC::JSGlobalObject*, $className*";
                 foreach my $argument (@{$operation->arguments}) {
                     my $type = $argument->type;
                     my $argumentType = GetArgumentTypeForFunctionWithoutTypeCheck($interface, $type);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to