summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-12-09 00:28:42 +0000
committerDan Gohman <gohman@apple.com>2009-12-09 00:28:42 +0000
commit56a5f19c70f0821c0810c471a6ccda2bbed39319 (patch)
tree45052be45f7ac767b5f7ab9d527eb020fb60ad6a /llvm/lib/Analysis
parent37251f83759c90f0ede2af9bae5c62c2e634fc8e (diff)
downloadbcm5719-llvm-56a5f19c70f0821c0810c471a6ccda2bbed39319.tar.gz
bcm5719-llvm-56a5f19c70f0821c0810c471a6ccda2bbed39319.zip
Fix a typo in a comment, and adjust SmallSet and SmallVector sizes,
that Chris noticed. llvm-svn: 90910
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r--llvm/lib/Analysis/CaptureTracking.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/lib/Analysis/CaptureTracking.cpp b/llvm/lib/Analysis/CaptureTracking.cpp
index 7a2f60b5e9e..007b2827897 100644
--- a/llvm/lib/Analysis/CaptureTracking.cpp
+++ b/llvm/lib/Analysis/CaptureTracking.cpp
@@ -45,20 +45,20 @@ static int const Threshold = 20;
bool llvm::PointerMayBeCaptured(const Value *V,
bool ReturnCaptures, bool StoreCaptures) {
assert(isa<PointerType>(V->getType()) && "Capture is for pointers only!");
- SmallVector<Use*, 16> Worklist;
- SmallSet<Use*, 16> Visited;
+ SmallVector<Use*, 20> Worklist;
+ SmallSet<Use*, 20> Visited;
int Count = 0;
for (Value::use_const_iterator UI = V->use_begin(), UE = V->use_end();
UI != UE; ++UI) {
- Use *U = &UI.getUse();
- Visited.insert(U);
- Worklist.push_back(U);
-
- // If there are lots of uses, conservativelty say that the value
+ // If there are lots of uses, conservatively say that the value
// is captured to avoid taking too much compile time.
if (Count++ >= Threshold)
return true;
+
+ Use *U = &UI.getUse();
+ Visited.insert(U);
+ Worklist.push_back(U);
}
while (!Worklist.empty()) {
OpenPOWER on IntegriCloud