From 9af014f80c4c45ee815627e8c08eb9a1de6b2a14 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Tue, 11 Mar 2008 17:32:05 +0000 Subject: [PATCH] Add TODO reminder. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48227 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/SCCP.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp index 24ba0bd0961..479588ef3ce 100644 --- a/lib/Transforms/Scalar/SCCP.cpp +++ b/lib/Transforms/Scalar/SCCP.cpp @@ -1760,6 +1760,7 @@ bool IPSCCP::runOnModule(Module &M) { // all call uses with the inferred value. This means we don't need to bother // actually returning anything from the function. Replace all return // instructions with return undef. + // TODO: Process multiple value ret instructions also. const DenseMap &RV = Solver.getTrackedRetVals(); for (DenseMap::const_iterator I = RV.begin(), E = RV.end(); I != E; ++I)