summaryrefslogtreecommitdiff
path: root/src/jit/compiler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/compiler.cpp')
-rw-r--r--src/jit/compiler.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/jit/compiler.cpp b/src/jit/compiler.cpp
index 40c31c6870..6b31cfaefe 100644
--- a/src/jit/compiler.cpp
+++ b/src/jit/compiler.cpp
@@ -9151,7 +9151,6 @@ int cTreeFlagsIR(Compiler* comp, GenTree* tree)
CLANG_FORMAT_COMMENT_ANCHOR;
#if defined(DEBUG)
-#if SMALL_TREE_NODES
if (comp->dumpIRNodes)
{
if (tree->gtDebugFlags & GTF_DEBUG_NODE_LARGE)
@@ -9163,7 +9162,6 @@ int cTreeFlagsIR(Compiler* comp, GenTree* tree)
chars += printf("[NODE_SMALL]");
}
}
-#endif // SMALL_TREE_NODES
if (tree->gtDebugFlags & GTF_DEBUG_NODE_MORPHED)
{
chars += printf("[MORPHED]");
@@ -10169,15 +10167,6 @@ int cLeafIR(Compiler* comp, GenTree* tree)
break;
case GT_LABEL:
-
- if (tree->gtLabel.gtLabBB)
- {
- chars += printf(FMT_BB, tree->gtLabel.gtLabBB->bbNum);
- }
- else
- {
- chars += printf("BB?");
- }
break;
case GT_IL_OFFSET: