Remove redundant inline keywords.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111192 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2010-08-16 21:57:30 +00:00
parent 7578ea887d
commit b85b31b300
2 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -58,7 +58,7 @@ namespace {
PrintFunctionPass(const std::string &B, raw_ostream *o, bool DS)
: FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {}
inline ~PrintFunctionPass() {
~PrintFunctionPass() {
if (DeleteStream) delete Out;
}