[llvm-commits] [poolalloc] r137569 - in /poolalloc/trunk: Makefile lib/PoolAllocate/PoolAllocate.cpp

Will Dietz wdietz2 at illinois.edu
Sat Aug 13 17:39:38 PDT 2011


Author: wdietz2
Date: Sat Aug 13 19:39:38 2011
New Revision: 137569

URL: http://llvm.org/viewvc/llvm-project?rev=137569&view=rev
Log:
Turn building of runtimes on, they compile.

Modified:
    poolalloc/trunk/Makefile
    poolalloc/trunk/lib/PoolAllocate/PoolAllocate.cpp

Modified: poolalloc/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/Makefile?rev=137569&r1=137568&r2=137569&view=diff
==============================================================================
--- poolalloc/trunk/Makefile (original)
+++ poolalloc/trunk/Makefile Sat Aug 13 19:39:38 2011
@@ -10,7 +10,7 @@
 #
 # Directories that needs to be built.
 #
-DIRS = lib tools
+DIRS = lib runtime tools
 
 #
 # Include the Master Makefile that knows how to build all.

Modified: poolalloc/trunk/lib/PoolAllocate/PoolAllocate.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/lib/PoolAllocate/PoolAllocate.cpp?rev=137569&r1=137568&r2=137569&view=diff
==============================================================================
--- poolalloc/trunk/lib/PoolAllocate/PoolAllocate.cpp (original)
+++ poolalloc/trunk/lib/PoolAllocate/PoolAllocate.cpp Sat Aug 13 19:39:38 2011
@@ -197,8 +197,10 @@
 
 void PoolAllocate::getAnalysisUsage(AnalysisUsage &AU) const {
   // We will need the heuristic pass to tell us what to do and how to do it
+
   AU.addRequired<Heuristic>();
   AU.addPreserved<Heuristic>();
+
   if (dsa_pass_to_use == PASS_EQTD) {
     AU.addRequiredTransitive<EQTDDataStructures>();
     if(lie_preserve_passes != LIE_NONE)





More information about the llvm-commits mailing list