aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms/Utils/SSAUpdater.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-12-22 00:51:57 +0000
committerChris Lattner <sabre@nondot.org>2009-12-22 00:51:57 +0000
commita25bc446639300f341305f4e6df684cf78632ec8 (patch)
treec5025766b5064f43df8c3706fab08b9cb1e601b2 /include/llvm/Transforms/Utils/SSAUpdater.h
parente80ae836f24604dc309d0fc7a2842d8704f3e5d1 (diff)
downloadexternal_llvm-a25bc446639300f341305f4e6df684cf78632ec8.zip
external_llvm-a25bc446639300f341305f4e6df684cf78632ec8.tar.gz
external_llvm-a25bc446639300f341305f4e6df684cf78632ec8.tar.bz2
comment fix: weakvh -> tracking vh
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91867 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Utils/SSAUpdater.h')
-rw-r--r--include/llvm/Transforms/Utils/SSAUpdater.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Transforms/Utils/SSAUpdater.h b/include/llvm/Transforms/Utils/SSAUpdater.h
index 2364330..927e156 100644
--- a/include/llvm/Transforms/Utils/SSAUpdater.h
+++ b/include/llvm/Transforms/Utils/SSAUpdater.h
@@ -29,8 +29,8 @@ namespace llvm {
class SSAUpdater {
/// AvailableVals - This keeps track of which value to use on a per-block
/// basis. When we insert PHI nodes, we keep track of them here. We use
- /// WeakVH's for the value of the map because we RAUW PHI nodes when we
- /// eliminate them, and want the WeakVH to track this.
+ /// TrackingVH's for the value of the map because we RAUW PHI nodes when we
+ /// eliminate them, and want the TrackingVH's to track this.
//typedef DenseMap<BasicBlock*, TrackingVH<Value> > AvailableValsTy;
void *AV;