Title: [256898] branches/safari-609-branch/Source/_javascript_Core
Revision
256898
Author
simon.fra...@apple.com
Date
2020-02-18 18:10:57 -0800 (Tue, 18 Feb 2020)

Log Message

Unreviewed build fix.

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

Modified Paths

Diff

Modified: branches/safari-609-branch/Source/_javascript_Core/ChangeLog (256897 => 256898)


--- branches/safari-609-branch/Source/_javascript_Core/ChangeLog	2020-02-19 01:34:28 UTC (rev 256897)
+++ branches/safari-609-branch/Source/_javascript_Core/ChangeLog	2020-02-19 02:10:57 UTC (rev 256898)
@@ -1,3 +1,10 @@
+2020-02-18  Simon Fraser  <simon.fra...@apple.com>
+
+        Unreviewed build fix.
+
+        * jit/JITThunks.cpp:
+        (JSC::JITThunks::hostFunctionStub):
+
 2020-02-18  Alan Coon  <alanc...@apple.com>
 
         Cherry-pick r256779. rdar://problem/59551695

Modified: branches/safari-609-branch/Source/_javascript_Core/jit/JITThunks.cpp (256897 => 256898)


--- branches/safari-609-branch/Source/_javascript_Core/jit/JITThunks.cpp	2020-02-19 01:34:28 UTC (rev 256897)
+++ branches/safari-609-branch/Source/_javascript_Core/jit/JITThunks.cpp	2020-02-19 02:10:57 UTC (rev 256898)
@@ -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