From 3f8adce8e4add646b320cc959ae81c24058ea258 Mon Sep 17 00:00:00 2001 From: Akash Kothari <akashk4@tyler.cs.illinois.edu> Date: Thu, 9 Jan 2020 09:37:20 -0600 Subject: [PATCH] Remove comment regarding Module pass return value -- no IR change by BuildDFG --- hpvm/lib/Transforms/BuildDFG/BuildDFG.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hpvm/lib/Transforms/BuildDFG/BuildDFG.cpp b/hpvm/lib/Transforms/BuildDFG/BuildDFG.cpp index 23c38423c6..8d5a5cb0e6 100644 --- a/hpvm/lib/Transforms/BuildDFG/BuildDFG.cpp +++ b/hpvm/lib/Transforms/BuildDFG/BuildDFG.cpp @@ -67,7 +67,7 @@ bool BuildDFG::runOnModule(Module &M) { // Checking that we found at least one launch site assert((Roots.size() != 0) && "Launch site not found."); - return false; //TODO: What does returning "false" mean? + return false; } DFInternalNode *BuildDFG::getRoot() const { -- GitLab