Skip to content

Commit

Permalink
Fix dumping of block op kinds (#85101)
Browse files Browse the repository at this point in the history
  • Loading branch information
SingleAccretion committed Apr 20, 2023
1 parent 9df61d9 commit 3713168
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/coreclr/jit/gentree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11982,7 +11982,14 @@ void Compiler::gtDispTree(GenTree* tree,
{
switch (tree->AsBlk()->gtBlkOpKind)
{
case GenTreeBlk::BlkOpKindCpObjUnroll:
printf(" (CpObjUnroll)");
break;
#ifdef TARGET_XARCH
case GenTreeBlk::BlkOpKindCpObjRepInstr:
printf(" (CpObjRepInstr)");
break;

case GenTreeBlk::BlkOpKindRepInstr:
printf(" (RepInstr)");
break;
Expand Down

0 comments on commit 3713168

Please sign in to comment.