LoopInstSimplify preserves LoopSimplify.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123117 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Cameron Zwarich 2011-01-09 12:35:16 +00:00
parent 694d753b09
commit e7d7865bfd

View File

@ -40,6 +40,7 @@ namespace {
AU.setPreservesCFG();
AU.addRequired<LoopInfo>();
AU.addRequiredID(LoopSimplifyID);
AU.addPreservedID(LoopSimplifyID);
AU.addPreservedID(LCSSAID);
}
};