forked from OSchip/llvm-project
Make ImmutablePass::runOnModule non-virtual, since it is not
intended to be overridden. llvm-svn: 40671
This commit is contained in:
parent
10e52eddb3
commit
f7325ccf90
|
@ -262,7 +262,7 @@ public:
|
|||
|
||||
/// ImmutablePasses are never run.
|
||||
///
|
||||
virtual bool runOnModule(Module &M) { return false; }
|
||||
bool runOnModule(Module &M) { return false; }
|
||||
|
||||
explicit ImmutablePass(intptr_t pid) : ModulePass(pid) {}
|
||||
// Force out-of-line virtual method.
|
||||
|
|
Loading…
Reference in New Issue