diff options
| author | Dan Gohman <gohman@apple.com> | 2010-08-16 21:57:30 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-08-16 21:57:30 +0000 |
| commit | 2c6d59c3c4e5b2e1e846f52c871d42dee19ac308 (patch) | |
| tree | c34afbbc23ec8c416e967f3fa8fe6c147b5472d7 /lib/VMCore/PassManager.cpp | |
| parent | eb79ccd32b26b6ee0526261ce61b58a86c107ac2 (diff) | |
| download | external_llvm-2c6d59c3c4e5b2e1e846f52c871d42dee19ac308.zip external_llvm-2c6d59c3c4e5b2e1e846f52c871d42dee19ac308.tar.gz external_llvm-2c6d59c3c4e5b2e1e846f52c871d42dee19ac308.tar.bz2 | |
Remove redundant inline keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111192 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/PassManager.cpp')
| -rw-r--r-- | lib/VMCore/PassManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/PassManager.cpp b/lib/VMCore/PassManager.cpp index df96190..ba06e92 100644 --- a/lib/VMCore/PassManager.cpp +++ b/lib/VMCore/PassManager.cpp @@ -266,7 +266,7 @@ public: Info.setPreservesAll(); } - inline void addTopLevelPass(Pass *P) { + void addTopLevelPass(Pass *P) { if (ImmutablePass *IP = P->getAsImmutablePass()) { // P is a immutable pass and it will be managed by this // top level manager. Set up analysis resolver to connect them. @@ -410,7 +410,7 @@ public: Info.setPreservesAll(); } - inline void addTopLevelPass(Pass *P) { + void addTopLevelPass(Pass *P) { if (ImmutablePass *IP = P->getAsImmutablePass()) { // P is a immutable pass and it will be managed by this // top level manager. Set up analysis resolver to connect them. |
