We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9df61d9 commit 3713168Copy full SHA for 3713168
src/coreclr/jit/gentree.cpp
@@ -11982,7 +11982,14 @@ void Compiler::gtDispTree(GenTree* tree,
11982
{
11983
switch (tree->AsBlk()->gtBlkOpKind)
11984
11985
+ case GenTreeBlk::BlkOpKindCpObjUnroll:
11986
+ printf(" (CpObjUnroll)");
11987
+ break;
11988
#ifdef TARGET_XARCH
11989
+ case GenTreeBlk::BlkOpKindCpObjRepInstr:
11990
+ printf(" (CpObjRepInstr)");
11991
11992
+
11993
case GenTreeBlk::BlkOpKindRepInstr:
11994
printf(" (RepInstr)");
11995
break;
0 commit comments