From: Chris Lattner Date: Tue, 22 Dec 2009 00:51:57 +0000 (+0000) Subject: comment fix: weakvh -> tracking vh X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a25bc446639300f341305f4e6df684cf78632ec8;p=oota-llvm.git comment fix: weakvh -> tracking vh git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91867 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Transforms/Utils/SSAUpdater.h b/include/llvm/Transforms/Utils/SSAUpdater.h index 23643301a46..927e156abfb 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 > AvailableValsTy; void *AV;