[PATCH] D76813: Remove overly verbose debug from GenericDomTreeConstruction
Mehdi AMINI via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 25 18:26:08 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGaffed19fc38c: Remove overly verbose debug from GenericDomTreeConstruction (authored by mehdi_amini).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D76813/new/
https://reviews.llvm.org/D76813
Files:
llvm/include/llvm/Support/GenericDomTreeConstruction.h
Index: llvm/include/llvm/Support/GenericDomTreeConstruction.h
===================================================================
--- llvm/include/llvm/Support/GenericDomTreeConstruction.h
+++ llvm/include/llvm/Support/GenericDomTreeConstruction.h
@@ -599,8 +599,6 @@
// Loop over all of the discovered blocks in the function...
for (size_t i = 1, e = NumToNode.size(); i != e; ++i) {
NodePtr W = NumToNode[i];
- LLVM_DEBUG(dbgs() << "\tdiscovered a new reachable node "
- << BlockNamePrinter(W) << "\n");
// Don't replace this with 'count', the insertion side effect is important
if (DT.DomTreeNodes[W]) continue; // Haven't calculated this node yet?
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D76813.252722.patch
Type: text/x-patch
Size: 714 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200326/211a864e/attachment.bin>
More information about the llvm-commits
mailing list