Changeset 252006 in webkit
- Timestamp:
- Nov 4, 2019, 11:23:24 AM (5 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r251978 r252006 1 2019-11-04 Mark Lam <mark.lam@apple.com> 2 3 Surpress ASAN in SamplingProfiler's FrameWalker::resetAtMachineFrame(). 4 https://bugs.webkit.org/show_bug.cgi?id=203819 5 <rdar://problem/56840002> 6 7 Reviewed by Saam Barati. 8 9 * runtime/SamplingProfiler.cpp: 10 (JSC::FrameWalker::resetAtMachineFrame): 11 1 12 2019-11-03 Tadeu Zagallo <tzagallo@apple.com> 2 13 -
trunk/Source/JavaScriptCore/runtime/SamplingProfiler.cpp
r251886 r252006 171 171 172 172 CodeBlock* codeBlock = m_callFrame->unsafeCodeBlock(); 173 if (!codeBlock || m_callFrame-> callee().isWasm())173 if (!codeBlock || m_callFrame->unsafeCallee().isWasm()) 174 174 return; 175 175
Note:
See TracChangeset
for help on using the changeset viewer.