diff options
author | Chad Rosier <mcrosier@apple.com> | 2013-02-20 20:15:55 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2013-02-20 20:15:55 +0000 |
commit | 4d87d45a05e016091c3964f4332bf0574019b265 (patch) | |
tree | 0a824d8579a2b5ea889aef0ec52c1d2bc9097368 | |
parent | e4c0e3712ffd21c792a83d3a5f148d2146b188c7 (diff) | |
download | bcm5719-llvm-4d87d45a05e016091c3964f4332bf0574019b265.tar.gz bcm5719-llvm-4d87d45a05e016091c3964f4332bf0574019b265.zip |
Update a comment that looks to have been accidentally deleted many moons ago.
llvm-svn: 175658
-rw-r--r-- | llvm/lib/Transforms/Scalar/SCCP.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/SCCP.cpp b/llvm/lib/Transforms/Scalar/SCCP.cpp index 3e935d8dc07..837ed9b7d15 100644 --- a/llvm/lib/Transforms/Scalar/SCCP.cpp +++ b/llvm/lib/Transforms/Scalar/SCCP.cpp @@ -1185,7 +1185,7 @@ void SCCPSolver::Solve() { DEBUG(dbgs() << "\nPopped off OI-WL: " << *I << '\n'); // "I" got into the work list because it either made the transition from - // bottom to constant + // bottom to constant, or to overdefined. // // Anything on this worklist that is overdefined need not be visited // since all of its users will have already been marked as overdefined |