ASan was incorrectly thinking that we're accessing invalid stack memory when we're not. <rdar://problem/62275430>
Created attachment 397545 [details] proposed patch.
Comment on attachment 397545 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=397545&action=review r=me > Source/JavaScriptCore/dfg/DFGClobberize.h:43 > +SUPPRESS_ASAN void clobberize(Graph& graph, Node* node, const ReadFunctor& read, const WriteFunctor& write, const DefFunctor& def) Can you add FIXME comment describing why SUPPRESS_ASAN is necessary (describing about ASAN bug)?
(In reply to Yusuke Suzuki from comment #2) > Can you add FIXME comment describing why SUPPRESS_ASAN is necessary > (describing about ASAN bug)? Thanks for the review. I've added the FIXME with explanation. Landed in r260692: <http://trac.webkit.org/r260692>.