[llvm-commits] [poolalloc] r44678 - /poolalloc/trunk/include/dsa/DataStructure.h

John Criswell criswell at uiuc.edu
Fri Dec 7 10:06:17 PST 2007


Author: criswell
Date: Fri Dec  7 12:06:17 2007
New Revision: 44678

URL: http://llvm.org/viewvc/llvm-project?rev=44678&view=rev
Log:
Comment out the declarations of deleteValue() and copyValue() for the
TDDataStructure pass.  These methods are never defined and are uneeded.
Need review from Andrew Lenharth to see whether these should be removed
permanently.

Modified:
    poolalloc/trunk/include/dsa/DataStructure.h

Modified: poolalloc/trunk/include/dsa/DataStructure.h
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/include/dsa/DataStructure.h?rev=44678&r1=44677&r2=44678&view=diff

==============================================================================
--- poolalloc/trunk/include/dsa/DataStructure.h (original)
+++ poolalloc/trunk/include/dsa/DataStructure.h Fri Dec  7 12:06:17 2007
@@ -272,10 +272,12 @@
 
   virtual bool runOnModule(Module &M);
 
+#if 0
   /// deleteValue/copyValue - Interfaces to update the DSGraphs in the program.
   /// These correspond to the interfaces defined in the AliasAnalysis class.
   void deleteValue(Value *V);
   void copyValue(Value *From, Value *To);
+#endif
 
   /// print - Print out the analysis results...
   ///





More information about the llvm-commits mailing list