We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b34abe1 commit 315bdd4Copy full SHA for 315bdd4
src/coreclr/jit/gcinfo.cpp
@@ -252,6 +252,12 @@ GCInfo::WriteBarrierForm GCInfo::gcIsWriteBarrierCandidate(GenTreeStoreInd* stor
252
return WBF_NoBarrier;
253
}
254
255
+ if (store->Data()->IsIconHandle(GTF_ICON_OBJ_HDL))
256
+ {
257
+ // Ignore frozen objects
258
+ return WBF_NoBarrier;
259
+ }
260
+
261
WriteBarrierForm wbf = gcWriteBarrierFormFromTargetAddress(store->Addr());
262
263
if (wbf == WBF_BarrierUnknown)
0 commit comments