Resolve 1 missing symbol in linking.

Resolve 1 missing symbol in linking.
This commit is contained in:
win7-7 2026-01-05 08:11:41 +02:00 committed by wuggy
commit 09b6a56580

View file

@ -3988,6 +3988,13 @@ CodeGenerator::visitPostWriteElementBarrierO(LPostWriteElementBarrierO* lir)
visitPostWriteBarrierCommon<LPostWriteElementBarrierO, MIRType::Object>(lir, ool);
}
void
CodeGenerator::visitPostWriteElementBarrierS(LPostWriteElementBarrierS* lir)
{
auto ool = new(alloc()) OutOfLineCallPostWriteElementBarrier(lir, lir->object(), lir->index());
visitPostWriteBarrierCommon<LPostWriteElementBarrierS, MIRType::String>(lir, ool);
}
void
CodeGenerator::visitPostWriteElementBarrierV(LPostWriteElementBarrierV* lir)
{