Title: [256982] branches/safari-609.1.20.1-branch/Source/_javascript_Core
Revision
256982
Author
repst...@apple.com
Date
2020-02-19 15:38:41 -0800 (Wed, 19 Feb 2020)

Log Message

Cherry-pick r256898. rdar://problem/59576798

    Unreviewed build fix.

    * jit/JITThunks.cpp:
    (JSC::JITThunks::hostFunctionStub):

    git-svn-id: https://svn.webkit.org/repository/webkit/branches/safari-609-branch@256898 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-609.1.20.1-branch/Source/_javascript_Core/ChangeLog (256981 => 256982)


--- branches/safari-609.1.20.1-branch/Source/_javascript_Core/ChangeLog	2020-02-19 23:38:37 UTC (rev 256981)
+++ branches/safari-609.1.20.1-branch/Source/_javascript_Core/ChangeLog	2020-02-19 23:38:41 UTC (rev 256982)
@@ -1,5 +1,23 @@
 2020-02-19  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r256898. rdar://problem/59576798
+
+    Unreviewed build fix.
+    
+    * jit/JITThunks.cpp:
+    (JSC::JITThunks::hostFunctionStub):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/branches/safari-609-branch@256898 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-02-18  Simon Fraser  <simon.fra...@apple.com>
+
+            Unreviewed build fix.
+
+            * jit/JITThunks.cpp:
+            (JSC::JITThunks::hostFunctionStub):
+
+2020-02-19  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r256665. rdar://problem/59576809
 
     [WASM] Wasm interpreter's calling convention doesn't match Wasm JIT's convention.

Modified: branches/safari-609.1.20.1-branch/Source/_javascript_Core/jit/JITThunks.cpp (256981 => 256982)


--- branches/safari-609.1.20.1-branch/Source/_javascript_Core/jit/JITThunks.cpp	2020-02-19 23:38:37 UTC (rev 256981)
+++ branches/safari-609.1.20.1-branch/Source/_javascript_Core/jit/JITThunks.cpp	2020-02-19 23:38:41 UTC (rev 256982)
@@ -218,7 +218,7 @@
             ASSERT(!*addResult.iterator);
             *addResult.iterator = Weak<NativeExecutable>(nativeExecutable, this);
             ASSERT(*addResult.iterator);
-#if ASSERT_ENABLED
+#if !ASSERT_DISABLED
             auto iterator = m_nativeExecutableSet.find<HostKeySearcher>(hostFunctionKey);
             ASSERT(iterator != m_nativeExecutableSet.end());
             ASSERT(iterator->get() == nativeExecutable);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to