1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

We preserve the CFG and some of the analysis passes.

llvm-svn: 185251
This commit is contained in:
Nadav Rotem 2013-06-29 05:38:15 +00:00
parent aed4323517
commit 201beeb585

View File

@ -1525,6 +1525,9 @@ struct SLPVectorizer : public FunctionPass {
AU.addRequired<TargetTransformInfo>();
AU.addRequired<LoopInfo>();
AU.addRequired<DominatorTree>();
AU.addPreserved<LoopInfo>();
AU.addPreserved<DominatorTree>();
AU.setPreservesCFG();
}
private: