[llvm-commits] [poolalloc] r57464 - /poolalloc/trunk/include/dsa/DataStructure.h
John Criswell
criswell at uiuc.edu
Mon Oct 13 13:49:00 PDT 2008
Author: criswell
Date: Mon Oct 13 15:49:00 2008
New Revision: 57464
URL: http://llvm.org/viewvc/llvm-project?rev=57464&view=rev
Log:
Remove deleteValue() and copyValue() from the BU pass as I think the
DataStructures base class now provides these methods for all DSA passes.
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=57464&r1=57463&r2=57464&view=diff
==============================================================================
--- poolalloc/trunk/include/dsa/DataStructure.h (original)
+++ poolalloc/trunk/include/dsa/DataStructure.h Mon Oct 13 15:49:00 2008
@@ -232,11 +232,6 @@
virtual bool runOnModule(Module &M);
- /// 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);
-
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
AU.addRequired<StdLibDataStructures>();
}
More information about the llvm-commits
mailing list