[llvm-commits] [llvm] r154752 - in /llvm/trunk: CREDITS.TXT docs/ReleaseNotes.html

Brendon Cahoon bcahoon at codeaurora.org
Sat Apr 14 09:54:12 PDT 2012


Author: bcahoon
Date: Sat Apr 14 11:54:12 2012
New Revision: 154752

URL: http://llvm.org/viewvc/llvm-project?rev=154752&view=rev
Log:
Add the loop unrolling info to ReleaseNotes.html and CREDITS.TXT.

Modified:
    llvm/trunk/CREDITS.TXT
    llvm/trunk/docs/ReleaseNotes.html

Modified: llvm/trunk/CREDITS.TXT
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CREDITS.TXT?rev=154752&r1=154751&r2=154752&view=diff
==============================================================================
--- llvm/trunk/CREDITS.TXT (original)
+++ llvm/trunk/CREDITS.TXT Sat Apr 14 11:54:12 2012
@@ -50,6 +50,10 @@
 E: buschard at uiuc.edu
 D: The `mem2reg' pass - promotes values stored in memory to registers
 
+N: Brendon Cahoon
+E: bcahoon at codeaurora.org
+D: Loop unrolling with run-time trip counts.
+
 N: Chandler Carruth
 E: chandlerc at gmail.com
 D: LinkTimeOptimizer for Linux, via binutils integration, and C API

Modified: llvm/trunk/docs/ReleaseNotes.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ReleaseNotes.html?rev=154752&r1=154751&r2=154752&view=diff
==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Sat Apr 14 11:54:12 2012
@@ -308,6 +308,9 @@
    optimizers:</p>
 
 <ul>
+  <li>The loop unroll pass now is able to unroll loops with run-time trip counts.
+      This feature is turned off by default, and is enabled with the
+      <code>-unroll-runtime</code> flag.</li>
   <li>....</li>
 </ul>
 





More information about the llvm-commits mailing list