summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvmc2/CompilationGraph.h
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/tools/llvmc2/CompilationGraph.h')
-rw-r--r--llvm/tools/llvmc2/CompilationGraph.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/tools/llvmc2/CompilationGraph.h b/llvm/tools/llvmc2/CompilationGraph.h
index 7dfe78fd2de..4324c38ab85 100644
--- a/llvm/tools/llvmc2/CompilationGraph.h
+++ b/llvm/tools/llvmc2/CompilationGraph.h
@@ -79,8 +79,6 @@ namespace llvmc {
{ OutEdges.push_back(llvm::IntrusiveRefCntPtr<Edge>(E)); }
// Inward edge counter. Used to implement topological sort.
- // TOTHINK: Move the mutable counter back into Tool classes? Makes
- // us more const-correct.
void IncrInEdges() { ++InEdges; }
void DecrInEdges() { --InEdges; }
bool HasNoInEdges() const { return InEdges == 0; }
OpenPOWER on IntegriCloud