diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-29 07:02:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-29 07:02:56 +0000 |
commit | e418ac832c1a2813736c44f6ec5c646b4c89c339 (patch) | |
tree | 4abfbf20966ee0210246105cf52a406abed0f7f2 | |
parent | 44e2bd31f13da68bca451e4210560db3644b8208 (diff) |
licm preserves the cfg, it doesn't have to explicitly say it
preserves domfrontier. It does preserve AA though.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112419 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/LICM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp index 41d9e4c260..d8b46bbc35 100644 --- a/lib/Transforms/Scalar/LICM.cpp +++ b/lib/Transforms/Scalar/LICM.cpp @@ -78,8 +78,8 @@ namespace { AU.addRequired<LoopInfo>(); AU.addRequiredID(LoopSimplifyID); AU.addRequired<AliasAnalysis>(); + AU.addPreserved<AliasAnalysis>(); AU.addPreserved<ScalarEvolution>(); - AU.addPreserved<DominanceFrontier>(); AU.addPreservedID(LoopSimplifyID); } |