[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Dec 8 08:05:16 PST 2004
Changes in directory llvm/lib/Transforms/Instrumentation/ProfilePaths:
ProfilePaths.cpp updated: 1.40 -> 1.41
---
Log message:
Remove unneeded class qualifier, contributed by Bjørn Wennberg
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.40 llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.41
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.40 Thu Nov 4 22:46:22 2004
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp Wed Dec 8 10:05:02 2004
@@ -49,7 +49,7 @@
// Before this pass, make sure that there is only one
// entry and only one exit node for the function in the CFG of the function
//
- void ProfilePaths::getAnalysisUsage(AnalysisUsage &AU) const {
+ void getAnalysisUsage(AnalysisUsage &AU) const {
AU.addRequired<UnifyFunctionExitNodes>();
}
};
More information about the llvm-commits
mailing list