diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-12 21:52:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-12 21:52:28 +0000 |
commit | 98bf436e2e2ab463d79c54a42a46b12028905330 (patch) | |
tree | 1de25860feea0170f5215f19d15fc94bb5c639c1 /lib/Transforms/Utils/LoopSimplify.cpp | |
parent | d59128ad364b01caf6c541f02e0e9631e834eb1a (diff) |
Rename loop preheaders pass to loop simplify
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9061 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r-- | lib/Transforms/Utils/LoopSimplify.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/LoopSimplify.cpp b/lib/Transforms/Utils/LoopSimplify.cpp index 9aee1d3586..718c49da43 100644 --- a/lib/Transforms/Utils/LoopSimplify.cpp +++ b/lib/Transforms/Utils/LoopSimplify.cpp @@ -66,8 +66,8 @@ namespace { } // Publically exposed interface to pass... -const PassInfo *LoopPreheadersID = X.getPassInfo(); -Pass *createLoopPreheaderInsertionPass() { return new LoopSimplify(); } +const PassInfo *LoopSimplifyID = X.getPassInfo(); +Pass *createLoopSimplifyPass() { return new LoopSimplify(); } /// runOnFunction - Run down all loops in the CFG (recursively, but we could do |