Skip to content

Commit c585bd7

Browse files
Temporarily disable assert to avoid #67600 (#67711)
1 parent 244aa7a commit c585bd7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/coreclr/jit/gentree.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5788,7 +5788,8 @@ struct GenTreeArrAddr : GenTreeUnOp
57885788
, m_elemType(elemType)
57895789
, m_firstElemOffset(firstElemOffset)
57905790
{
5791-
assert(addr->TypeIs(TYP_BYREF) || addr->IsIntegralConst(0));
5791+
// Temporarily disable this assert. Tracking: https://github.com/dotnet/runtime/issues/67600
5792+
// assert(addr->TypeIs(TYP_BYREF) || addr->IsIntegralConst(0));
57925793
assert(((elemType == TYP_STRUCT) && (elemClassHandle != NO_CLASS_HANDLE)) ||
57935794
(elemClassHandle == NO_CLASS_HANDLE));
57945795

0 commit comments

Comments
 (0)