git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_40@294797
91177308-0d34-0410-b5e6-
96231b3b80d8
* LLVM now handles invariant.group across different basic blocks, which makes
it possible to devirtualize virtual calls inside loops.
+* The aggressive dead code elimination phase ("adce") now remove
+ branches which do not effect program behavior. Loops are retained by
+ default since they may be infinite but these can also be removed
+ with LLVM option -adce-remove-loops when the loop body otherwise has
+ no live operations.
+
* ... next change ...
.. NOTE