diff options
author | Owen Anderson <resistor@mac.com> | 2008-06-06 16:23:15 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-06-06 16:23:15 +0000 |
commit | f7647e432cb1d87fb325b3302542690916fe448d (patch) | |
tree | 205082c85631dbac07f6089a93d420b44fb5e5a0 | |
parent | 089018fb054cb1dea4f7f3d159d7a2693f131cc8 (diff) | |
download | bcm5719-llvm-f7647e432cb1d87fb325b3302542690916fe448d.tar.gz bcm5719-llvm-f7647e432cb1d87fb325b3302542690916fe448d.zip |
Include loop deletion and the ADCE rewrite in the release notes.
llvm-svn: 52048
-rw-r--r-- | llvm/docs/ReleaseNotes.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/docs/ReleaseNotes.html b/llvm/docs/ReleaseNotes.html index 3ee762a01ab..470f38da33f 100644 --- a/llvm/docs/ReleaseNotes.html +++ b/llvm/docs/ReleaseNotes.html @@ -240,6 +240,11 @@ optimization. The LLVM optimizer now notices long sequences of consequtive stores and merges them into <tt>memcpy</tt>s where profitable.</li> <li>Alignment detection for vector memory references and for <tt>memcpy</tt> and <tt>memset</tt> is now more aggressive.</li> + +<li>The aggressive dead code elimination (ADCE) optimization has been rewritten to make +it both faster and safer in the presence of code containing infinite loops. +Some of its prior functionality has been factored out into the loop deletion +pass, which <em>is</em> safe for infinite loops.</li> </ul> </div> |