From ff730398c0543249d71c605946b001d41e5fc1e1 Mon Sep 17 00:00:00 2001
From: Brendon Cahoon
Date: Sat, 14 Apr 2012 16:54:12 +0000
Subject: [PATCH] Add the loop unrolling info to ReleaseNotes.html and
CREDITS.TXT.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154752 91177308-0d34-0410-b5e6-96231b3b80d8
---
CREDITS.TXT | 4 ++++
docs/ReleaseNotes.html | 3 +++
2 files changed, 7 insertions(+)
diff --git a/CREDITS.TXT b/CREDITS.TXT
index 4ec09c855ea..6c8a22b96f0 100644
--- a/CREDITS.TXT
+++ b/CREDITS.TXT
@@ -50,6 +50,10 @@ N: Cameron Buschardt
E: buschard@uiuc.edu
D: The `mem2reg' pass - promotes values stored in memory to registers
+N: Brendon Cahoon
+E: bcahoon@codeaurora.org
+D: Loop unrolling with run-time trip counts.
+
N: Chandler Carruth
E: chandlerc@gmail.com
D: LinkTimeOptimizer for Linux, via binutils integration, and C API
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 71555a47801..ca2bc649efd 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -308,6 +308,9 @@ Release Notes.
optimizers:
+ - 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
+
-unroll-runtime
flag.
- ....