[PATCH] D72350: [DDG] Data Dependence Graph - Graph Simplification

Michael Kruse via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 17 10:21:24 PST 2020


Meinersbur added inline comments.


================
Comment at: llvm/lib/Analysis/DependenceGraphBuilder.cpp:406-410
+  LLVM_DEBUG(dbgs() << "Size of candidate src node list:"
+                    << CandidateSourceNodes.size()
+                    << "\nNode with single outgoing def-use edge:\n";
+             for (NodeType *N
+                  : CandidateSourceNodes) { dbgs() << N << "\n"; });
----------------
[style] Can you enclose the inner of `LLVM_DEBUG` into braces such that clang-format formats it nicer?
```
LLVM_DEBUG({
  ...
});
```


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D72350/new/

https://reviews.llvm.org/D72350





More information about the llvm-commits mailing list