Skip to content

Commit 3f24435

Browse files
committed
fix build
1 parent 5aa7cad commit 3f24435

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/coreclr/jit/valuenum.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -602,8 +602,6 @@ class ValueNumStore
602602
template <typename TArgVisitor>
603603
VNVisitResult VNVisitReachingVNs(ValueNum vn, TArgVisitor argVisitor)
604604
{
605-
JITDUMP("Starting VNVisitReachingVNs for " FMT_VN "\n", vn);
606-
607605
ArrayStack<ValueNum> toVisit(m_alloc);
608606
toVisit.Push(vn);
609607

@@ -625,10 +623,6 @@ class ValueNumStore
625623
{
626624
toVisit.Push(childVN);
627625
}
628-
else
629-
{
630-
JITDUMP("Skipping already visited VN (cycle?) " FMT_VN "\n", childVN);
631-
}
632626
}
633627
}
634628
else
@@ -640,8 +634,6 @@ class ValueNumStore
640634
}
641635
}
642636
}
643-
644-
JITDUMP("Completed VNVisitReachingVNs successfully for " FMT_VN "\n", vn);
645637
return VNVisitResult::Completed;
646638
}
647639

0 commit comments

Comments
 (0)