[llvm-commits] [llvm] r91867 - /llvm/trunk/include/llvm/Transforms/Utils/SSAUpdater.h
Chris Lattner
sabre at nondot.org
Mon Dec 21 16:51:57 PST 2009
Author: lattner
Date: Mon Dec 21 18:51:57 2009
New Revision: 91867
URL: http://llvm.org/viewvc/llvm-project?rev=91867&view=rev
Log:
comment fix: weakvh -> tracking vh
Modified:
llvm/trunk/include/llvm/Transforms/Utils/SSAUpdater.h
Modified: llvm/trunk/include/llvm/Transforms/Utils/SSAUpdater.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Transforms/Utils/SSAUpdater.h?rev=91867&r1=91866&r2=91867&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Transforms/Utils/SSAUpdater.h (original)
+++ llvm/trunk/include/llvm/Transforms/Utils/SSAUpdater.h Mon Dec 21 18:51:57 2009
@@ -29,8 +29,8 @@
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;
More information about the llvm-commits
mailing list