[Webkit-unassigned] [Bug 158083] LLInt should support other types of prototype GetById caching.
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Jun 3 11:11:40 PDT 2016
https://bugs.webkit.org/show_bug.cgi?id=158083
--- Comment #18 from Keith Miller <keith_miller at apple.com> ---
Comment on attachment 280446
--> https://bugs.webkit.org/attachment.cgi?id=280446
Patch
View in context: https://bugs.webkit.org/attachment.cgi?id=280446&action=review
> Source/JavaScriptCore/llint/LLIntSlowPaths.cpp:703
> + JSObject* slotBase = (JSObject *) pc[6].u.pointer;
Style point. This should be:
JSObject* slotBase = JSCast<JSObject*>(pc[6].u.jsCell.get());
JSCast has some builtin error checking on debug builds.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160603/bcc06297/attachment.html>
More information about the webkit-unassigned
mailing list