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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15276 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke
2004-07-27 17:43:21 +00:00
parent c91bc30436
commit 96d4bf7aee
5 changed files with 7 additions and 7 deletions
+1 -1
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