Changeset 249365 in webkit


Ignore:
Timestamp:
Sep 1, 2019 9:31:51 AM (5 years ago)
Author:
mark.lam@apple.com
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):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r249362 r249365  
     12019-09-01  Mark Lam  <mark.lam@apple.com>
     2
     3        Speculative build fix for ARMv7 and MIPS.
     4        https://bugs.webkit.org/show_bug.cgi?id=201389
     5
     6        Not reviewed.
     7
     8        * bytecode/CodeBlock.cpp:
     9        (JSC::CodeBlock::jettison):
     10
    1112019-08-30  Yusuke Suzuki  <ysuzuki@apple.com>
    212
  • trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp

    r249175 r249365  
    20092009
    20102010    VM& vm = *m_vm;
    2011    
    2012     CODEBLOCK_LOG_EVENT(this, "jettison", ("due to ", reason, ", counting = ", mode == CountReoptimization, ", detail = ", pointerDump(detail)));
     2011
     2012    CodeBlock* codeBlock = this; // Placate GCC for use in CODEBLOCK_LOG_EVENT  (does not like this).
     2013    CODEBLOCK_LOG_EVENT(codeBlock, "jettison", ("due to ", reason, ", counting = ", mode == CountReoptimization, ", detail = ", pointerDump(detail)));
    20132014
    20142015    RELEASE_ASSERT(reason != Profiler::NotJettisoned);
Note: See TracChangeset for help on using the changeset viewer.