X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/2d39b0e377c0896910ee49ae70082ba665faf986..ed1e77d3adeb83d26fd1dfb16dd84cabdcefd250:/bytecode/StructureStubInfo.cpp diff --git a/bytecode/StructureStubInfo.cpp b/bytecode/StructureStubInfo.cpp index 4615a3c..5ea530c 100644 --- a/bytecode/StructureStubInfo.cpp +++ b/bytecode/StructureStubInfo.cpp @@ -49,7 +49,6 @@ void StructureStubInfo::deref() return; } case access_get_by_id_self: - case access_get_by_id_chain: case access_put_by_id_transition_normal: case access_put_by_id_transition_direct: case access_put_by_id_replace: @@ -68,11 +67,6 @@ bool StructureStubInfo::visitWeakReferences(RepatchBuffer& repatchBuffer) if (!Heap::isMarked(u.getByIdSelf.baseObjectStructure.get())) return false; break; - case access_get_by_id_chain: - if (!Heap::isMarked(u.getByIdChain.baseObjectStructure.get()) - || !Heap::isMarked(u.getByIdChain.chain.get())) - return false; - break; case access_get_by_id_list: { if (!u.getByIdList.list->visitWeak(repatchBuffer)) return false;