mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-30 04:35:00 +00:00
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:
parent
7578ea887d
commit
b85b31b300
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user