Skip to content

Commit 3713168

Browse files
Fix dumping of block op kinds (#85101)
1 parent 9df61d9 commit 3713168

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/coreclr/jit/gentree.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11982,7 +11982,14 @@ void Compiler::gtDispTree(GenTree* tree,
1198211982
{
1198311983
switch (tree->AsBlk()->gtBlkOpKind)
1198411984
{
11985+
case GenTreeBlk::BlkOpKindCpObjUnroll:
11986+
printf(" (CpObjUnroll)");
11987+
break;
1198511988
#ifdef TARGET_XARCH
11989+
case GenTreeBlk::BlkOpKindCpObjRepInstr:
11990+
printf(" (CpObjRepInstr)");
11991+
break;
11992+
1198611993
case GenTreeBlk::BlkOpKindRepInstr:
1198711994
printf(" (RepInstr)");
1198811995
break;

0 commit comments

Comments
 (0)