Title: [249365] trunk/Source/_javascript_Core
Revision
249365
Author
mark....@apple.com
Date
2019-09-01 09:31:51 -0700 (Sun, 01 Sep 2019)

Log Message

Speculative build fix for ARMv7 and MIPS.
https://bugs.webkit.org/show_bug.cgi?id=201389

Not reviewed.

* bytecode/CodeBlock.cpp:
(JSC::CodeBlock::jettison):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (249364 => 249365)


--- trunk/Source/_javascript_Core/ChangeLog	2019-09-01 00:47:39 UTC (rev 249364)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-09-01 16:31:51 UTC (rev 249365)
@@ -1,3 +1,13 @@
+2019-09-01  Mark Lam  <mark....@apple.com>
+
+        Speculative build fix for ARMv7 and MIPS.
+        https://bugs.webkit.org/show_bug.cgi?id=201389
+
+        Not reviewed.
+
+        * bytecode/CodeBlock.cpp:
+        (JSC::CodeBlock::jettison):
+
 2019-08-30  Yusuke Suzuki  <ysuz...@apple.com>
 
         [JSC] LLInt op should not emit the same code three times

Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp (249364 => 249365)


--- trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2019-09-01 00:47:39 UTC (rev 249364)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2019-09-01 16:31:51 UTC (rev 249365)
@@ -2008,9 +2008,10 @@
 #endif
 
     VM& vm = *m_vm;
-    
-    CODEBLOCK_LOG_EVENT(this, "jettison", ("due to ", reason, ", counting = ", mode == CountReoptimization, ", detail = ", pointerDump(detail)));
 
+    CodeBlock* codeBlock = this; // Placate GCC for use in CODEBLOCK_LOG_EVENT  (does not like this).
+    CODEBLOCK_LOG_EVENT(codeBlock, "jettison", ("due to ", reason, ", counting = ", mode == CountReoptimization, ", detail = ", pointerDump(detail)));
+
     RELEASE_ASSERT(reason != Profiler::NotJettisoned);
     
 #if ENABLE(DFG_JIT)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to