X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/6fe7ccc865dc7d7541b93c5bcaf6368d2c98a174..8b637bb680022adfddad653280734877951535a9:/bytecode/PolymorphicPutByIdList.cpp diff --git a/bytecode/PolymorphicPutByIdList.cpp b/bytecode/PolymorphicPutByIdList.cpp index 170615b..6a6ec81 100644 --- a/bytecode/PolymorphicPutByIdList.cpp +++ b/bytecode/PolymorphicPutByIdList.cpp @@ -42,7 +42,7 @@ PutByIdAccess PutByIdAccess::fromStructureStubInfo( case access_put_by_id_replace: result.m_type = Replace; result.m_oldStructure.copyFrom(stubInfo.u.putByIdReplace.baseObjectStructure); - result.m_stubRoutine = MacroAssemblerCodeRef::createSelfManagedCodeRef(initialSlowPath); + result.m_stubRoutine = JITStubRoutine::createSelfManagedRoutine(initialSlowPath); break; case access_put_by_id_transition_direct: @@ -55,7 +55,7 @@ PutByIdAccess PutByIdAccess::fromStructureStubInfo( break; default: - ASSERT_NOT_REACHED(); + RELEASE_ASSERT_NOT_REACHED(); } return result; @@ -77,7 +77,7 @@ bool PutByIdAccess::visitWeak() const return false; break; default: - ASSERT_NOT_REACHED(); + RELEASE_ASSERT_NOT_REACHED(); return false; } return true;