Make the create...() functions for some of these passes return a FunctionPass *.

llvm-svn: 15276
This commit is contained in:
Brian Gaeke
2004-07-27 17:43:21 +00:00
parent 9eaa879f49
commit 38b79e8fbc
5 changed files with 7 additions and 7 deletions

View File

@@ -87,7 +87,7 @@ namespace {
RegisterAnalysisGroup<ValueNumbering, LoadVN> Y;
}
Pass *llvm::createLoadValueNumberingPass() { return new LoadVN(); }
FunctionPass *llvm::createLoadValueNumberingPass() { return new LoadVN(); }
/// getAnalysisUsage - Does not modify anything. It uses Value Numbering and