[llvm-commits] CVS: llvm/lib/Analysis/ProfileInfoLoaderPass.cpp

Chris Lattner lattner at cs.uiuc.edu
Mon Aug 21 10:20:16 PDT 2006



Changes in directory llvm/lib/Analysis:

ProfileInfoLoaderPass.cpp updated: 1.12 -> 1.13
---
Log message:

Fix PR885: http://llvm.org/PR885 


---
Diffs of the changes:  (+2 -3)

 ProfileInfoLoaderPass.cpp |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)


Index: llvm/lib/Analysis/ProfileInfoLoaderPass.cpp
diff -u llvm/lib/Analysis/ProfileInfoLoaderPass.cpp:1.12 llvm/lib/Analysis/ProfileInfoLoaderPass.cpp:1.13
--- llvm/lib/Analysis/ProfileInfoLoaderPass.cpp:1.12	Thu Apr 21 16:04:58 2005
+++ llvm/lib/Analysis/ProfileInfoLoaderPass.cpp	Mon Aug 21 12:20:01 2006
@@ -49,9 +49,8 @@
     virtual bool runOnModule(Module &M);
   };
 
-  RegisterPass<LoaderPass>
-  X("profile-loader", "Load profile information from llvmprof.out",
-    PassInfo::Analysis|PassInfo::Optimization);
+  RegisterOpt<LoaderPass>
+  X("profile-loader", "Load profile information from llvmprof.out");
 
   RegisterAnalysisGroup<ProfileInfo, LoaderPass> Y;
 }  // End of anonymous namespace






More information about the llvm-commits mailing list