Cong Hou 1dd3d83c5e Add new constructors for LoopInfo/DominatorTree/BFI/BPI
Those new constructors make it more natural to construct an object for a function. For example, previously to build a LoopInfo for a function, we need four statements:

DominatorTree DT;
LoopInfo LI;
DT.recalculate(F);
LI.analyze(DT);

Now we only need one statement:

LoopInfo LI(DominatorTree(F));

http://reviews.llvm.org/D11274



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242486 91177308-0d34-0410-b5e6-96231b3b80d8
2015-07-16 23:23:35 +00:00
..
2015-07-11 10:30:36 +00:00
2015-07-10 07:15:17 +00:00
2015-07-11 10:30:36 +00:00
2015-07-11 10:30:36 +00:00
2015-07-10 07:15:17 +00:00
2015-07-10 07:15:17 +00:00
2015-07-10 07:15:17 +00:00
2015-07-11 10:30:36 +00:00
2015-07-10 07:15:17 +00:00
2015-06-22 23:48:35 +00:00