summaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-12-08 16:05:02 +0000
committerChris Lattner <sabre@nondot.org>2004-12-08 16:05:02 +0000
commitf2fd400258c401acb746531a2caea5c9488d3de5 (patch)
tree49d9f4671c8b01eca314c28592d4cab0cab8d598 /lib/Transforms/Instrumentation
parentf08e9614393c53a10a98d989c16d8ef11af2de37 (diff)
downloadllvm-f2fd400258c401acb746531a2caea5c9488d3de5.tar.gz
llvm-f2fd400258c401acb746531a2caea5c9488d3de5.tar.bz2
llvm-f2fd400258c401acb746531a2caea5c9488d3de5.tar.xz
Remove unneeded class qualifier, contributed by Bjørn Wennberg
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18625 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation')
-rw-r--r--lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp b/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
index bb7c5a6e82..aa0723bd4a 100644
--- a/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
+++ b/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
@@ -49,7 +49,7 @@ struct ProfilePaths : public FunctionPass {
// 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>();
}
};