There was an error while loading. Please reload this page.
1 parent 1fa5485 commit 2bc4a9dCopy full SHA for 2bc4a9d
1 file changed
src/coreclr/jit/gentree.cpp
@@ -15663,6 +15663,11 @@ GenTree* Compiler::gtNewTempAssign(
15663
{
15664
ok = true;
15665
}
15666
+ // - TYP_I_IMPL = TYP_BYREF
15667
+ else if ((dstTyp == TYP_I_IMPL) && (valTyp == TYP_BYREF))
15668
+ {
15669
+ ok = true;
15670
+ }
15671
// - TYP_BYREF = TYP_REF when object stack allocation is enabled
15672
else if (JitConfig.JitObjectStackAllocation() && (dstTyp == TYP_BYREF) && (valTyp == TYP_REF))
15673
0 commit comments