mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-30 14:50:30 +00:00
Remove redundant inline keywords.
llvm-svn: 111192
This commit is contained in:
parent
05fbd723d5
commit
dfd828dd87
@ -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…
Reference in New Issue
Block a user