diff options
author | Devang Patel <dpatel@apple.com> | 2008-03-19 00:48:41 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-03-19 00:48:41 +0000 |
commit | c7fe32e840758baa9ce4f93c321b508a69b98262 (patch) | |
tree | 8880489b1046f714fff98a468cd30202e533b6f4 /include/llvm/Analysis/IntervalPartition.h | |
parent | bebc3642d354ef744f3fd55a20d28ba29ec51063 (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 'include/llvm/Analysis/IntervalPartition.h')
-rw-r--r-- | include/llvm/Analysis/IntervalPartition.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/llvm/Analysis/IntervalPartition.h b/include/llvm/Analysis/IntervalPartition.h index 855e3a44c4..42d27feaec 100644 --- a/include/llvm/Analysis/IntervalPartition.h +++ b/include/llvm/Analysis/IntervalPartition.h @@ -47,10 +47,7 @@ class IntervalPartition : public FunctionPass { public: static char ID; // Pass identification, replacement for typeid - IntervalPartition() : FunctionPass((intptr_t)&ID), RootInterval(0) {} - - /// isAnalysis - Return true if this pass is implementing an analysis pass. - virtual bool isAnalysis() const { return true; } + IntervalPartition() : FunctionPass((intptr_t)&ID, true), RootInterval(0) {} // run - Calculate the interval partition for this function virtual bool runOnFunction(Function &F); |