comment fix: weakvh -> tracking vh
authorChris Lattner <sabre@nondot.org>
Tue, 22 Dec 2009 00:51:57 +0000 (00:51 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 22 Dec 2009 00:51:57 +0000 (00:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91867 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Transforms/Utils/SSAUpdater.h

index 23643301a462da50cadcc4e577c041c296c46541..927e156abfb5cb80d9ed70f2d1067e0cf0991d78 100644 (file)
@@ -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;