comment fix: weakvh -> tracking vh

llvm-svn: 91867
This commit is contained in:
Chris Lattner 2009-12-22 00:51:57 +00:00
parent a4d7df7a37
commit 84463813a1
1 changed files with 2 additions and 2 deletions

View 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;