aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/ProfileInfoLoaderPass.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-03-19 00:48:41 +0000
committerDevang Patel <dpatel@apple.com>2008-03-19 00:48:41 +0000
commitc7fe32e840758baa9ce4f93c321b508a69b98262 (patch)
tree8880489b1046f714fff98a468cd30202e533b6f4 /lib/Analysis/ProfileInfoLoaderPass.cpp
parentbebc3642d354ef744f3fd55a20d28ba29ec51063 (diff)
Do not use virtual function to identify an analysis pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48520 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ProfileInfoLoaderPass.cpp')
-rw-r--r--lib/Analysis/ProfileInfoLoaderPass.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Analysis/ProfileInfoLoaderPass.cpp b/lib/Analysis/ProfileInfoLoaderPass.cpp
index e18625f8e7..12b18f736c 100644
--- a/lib/Analysis/ProfileInfoLoaderPass.cpp
+++ b/lib/Analysis/ProfileInfoLoaderPass.cpp
@@ -34,7 +34,7 @@ namespace {
public:
static char ID; // Class identification, replacement for typeinfo
explicit LoaderPass(const std::string &filename = "")
- : ModulePass((intptr_t)&ID), Filename(filename) {
+ : ModulePass((intptr_t)&ID, true), Filename(filename) {
if (filename.empty()) Filename = ProfileInfoFilename;
}
@@ -46,9 +46,6 @@ namespace {
return "Profiling information loader";
}
- /// isAnalysis - Return true if this pass is implementing an analysis pass.
- virtual bool isAnalysis() const { return true; }
-
/// run - Load the profile information from the specified file.
virtual bool runOnModule(Module &M);
};