diff options
author | Chris Lattner <sabre@nondot.org> | 2004-09-20 04:43:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-09-20 04:43:15 +0000 |
commit | 4b5015604908e9296800991a7c538a255356428f (patch) | |
tree | d453531085b7882934ee60dd14cf0320707c201f /lib/Transforms/Utils/LoopSimplify.cpp | |
parent | 8e47e7292c0edadb964403b06717220e432f854a (diff) |
Prototype these functions more accurately
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r-- | lib/Transforms/Utils/LoopSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/LoopSimplify.cpp b/lib/Transforms/Utils/LoopSimplify.cpp index 81cf8e2778..c576149170 100644 --- a/lib/Transforms/Utils/LoopSimplify.cpp +++ b/lib/Transforms/Utils/LoopSimplify.cpp @@ -88,7 +88,7 @@ namespace { // Publically exposed interface to pass... const PassInfo *llvm::LoopSimplifyID = X.getPassInfo(); -Pass *llvm::createLoopSimplifyPass() { return new LoopSimplify(); } +FunctionPass *llvm::createLoopSimplifyPass() { return new LoopSimplify(); } /// runOnFunction - Run down all loops in the CFG (recursively, but we could do /// it in any convenient order) inserting preheaders... |