Make ImmutablePass::runOnModule non-virtual, since it is not

intended to be overridden.

llvm-svn: 40671
This commit is contained in:
Dan Gohman 2007-08-01 14:28:20 +00:00
parent 10e52eddb3
commit f7325ccf90
1 changed files with 1 additions and 1 deletions

View File

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