diff options
author | Devang Patel <dpatel@apple.com> | 2007-02-27 15:00:39 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2007-02-27 15:00:39 +0000 |
commit | 84da80d10b472332d079c58d21aa48b82e636274 (patch) | |
tree | fa88f3e3f2da0874e1924247085965689634944c /lib/Analysis/IPA/CallGraphSCCPass.cpp | |
parent | 05c180b34763c2891a2bf467c48bcf2a96f7e660 (diff) |
Make getPassManagerType() const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34669 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA/CallGraphSCCPass.cpp')
-rw-r--r-- | lib/Analysis/IPA/CallGraphSCCPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/IPA/CallGraphSCCPass.cpp b/lib/Analysis/IPA/CallGraphSCCPass.cpp index 4a51be35bf..c317a112f5 100644 --- a/lib/Analysis/IPA/CallGraphSCCPass.cpp +++ b/lib/Analysis/IPA/CallGraphSCCPass.cpp @@ -66,7 +66,7 @@ public: return FP; } - virtual PassManagerType getPassManagerType() { + virtual PassManagerType getPassManagerType() const { return PMT_CallGraphPassManager; } }; |