aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-11-03 20:52:57 +0000
committerChris Lattner <sabre@nondot.org>2009-11-03 20:52:57 +0000
commita5b4c33c8bee18c293e4dbb9ce53d60bb653ad4d (patch)
tree0060d208c612c908a4d5b0420acccdfcd11775a3
parentfb4ea016719ee4d21cd3c0d01f82cd12c346d870 (diff)
downloadexternal_llvm-a5b4c33c8bee18c293e4dbb9ce53d60bb653ad4d.zip
external_llvm-a5b4c33c8bee18c293e4dbb9ce53d60bb653ad4d.tar.gz
external_llvm-a5b4c33c8bee18c293e4dbb9ce53d60bb653ad4d.tar.bz2
finish half thunk thought
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85937 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/SCCP.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp
index 15b5bb5..83fcd84 100644
--- a/lib/Transforms/Scalar/SCCP.cpp
+++ b/lib/Transforms/Scalar/SCCP.cpp
@@ -174,7 +174,9 @@ class SCCPSolver : public InstVisitor<SCCPSolver> {
/// that return multiple values.
DenseMap<std::pair<Function*, unsigned>, LatticeVal> TrackedMultipleRetVals;
- /// TrackingIncomingArguments - This is the set of functions that are
+ /// TrackingIncomingArguments - This is the set of functions for whose
+ /// arguments we make optimistic assumptions about and try to prove as
+ /// constants.
SmallPtrSet<Function*, 16> TrackingIncomingArguments;
/// The reason for two worklists is that overdefined is the lowest state