[llvm-commits] CVS: poolalloc/lib/PoolAllocate/PoolAllocate.h

Chris Lattner lattner at cs.uiuc.edu
Tue Feb 8 15:48:01 PST 2005



Changes in directory poolalloc/lib/PoolAllocate:

PoolAllocate.h updated: 1.36 -> 1.37

---
Log message:

Remove dead map.  If SAFEcode needs this, it should keep the inverse locally.


---
Diffs of the changes:  (+1 -4)

Index: poolalloc/lib/PoolAllocate/PoolAllocate.h
diff -u poolalloc/lib/PoolAllocate/PoolAllocate.h:1.36 poolalloc/lib/PoolAllocate/PoolAllocate.h:1.37
--- poolalloc/lib/PoolAllocate/PoolAllocate.h:1.36	Tue Feb  8 17:46:34 2005
+++ poolalloc/lib/PoolAllocate/PoolAllocate.h	Tue Feb  8 17:47:51 2005
@@ -52,6 +52,7 @@
     hash_set<const DSNode*> MarkedNodes;
 
     /// F - The function this FuncInfo corresponds to.
+    ///
     Function &F;
 
     /// Clone - The cloned version of the function, if applicable.
@@ -79,10 +80,6 @@
     /// the values they correspond to in the old function.
     ///
     std::map<Value*, const Value*> NewToOldValueMap;
-
-    /// ValueMap - This is a map from Old to New Value Map reverse of the one
-    /// above.  Useful in SAFECode for check insertion.
-    std::map<const Value*, Value*> ValueMap;
   };
 
 }; // end PA namespace





More information about the llvm-commits mailing list