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

Chris Lattner lattner at cs.uiuc.edu
Tue Feb 10 22:49:01 PST 2004


Changes in directory llvm/lib/Analysis:

ProfileInfo.cpp updated: 1.1 -> 1.2

---
Log message:

Make sure to register the 'no profile' implementation as the default for ProfileInfo


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

Index: llvm/lib/Analysis/ProfileInfo.cpp
diff -u llvm/lib/Analysis/ProfileInfo.cpp:1.1 llvm/lib/Analysis/ProfileInfo.cpp:1.2
--- llvm/lib/Analysis/ProfileInfo.cpp:1.1	Tue Feb 10 16:11:21 2004
+++ llvm/lib/Analysis/ProfileInfo.cpp	Tue Feb 10 22:47:54 2004
@@ -38,5 +38,5 @@
   X("no-profile", "No Profile Information");
 
   // Declare that we implement the AliasAnalysis interface
-  RegisterAnalysisGroup<ProfileInfo, NoProfileInfo> Y;
+  RegisterAnalysisGroup<ProfileInfo, NoProfileInfo, true> Y;
 }  // End of anonymous namespace





More information about the llvm-commits mailing list