From: Hans Wennborg Date: Fri, 10 Feb 2017 22:42:53 +0000 (+0000) Subject: ReleaseNotes: ADCE; patch by David Callahan X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b92ca5f522814b04c9627d6521c699219af8262;p=llvm ReleaseNotes: ADCE; patch by David Callahan git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_40@294797 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst index 4c6bd1807af..12ce7939878 100644 --- a/docs/ReleaseNotes.rst +++ b/docs/ReleaseNotes.rst @@ -55,6 +55,12 @@ Non-comprehensive list of changes in this release * 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