projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27aff87
)
add some html escapes
author
Chris Lattner
<sabre@nondot.org>
Sun, 8 Jun 2008 20:25:30 +0000
(20:25 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Sun, 8 Jun 2008 20:25:30 +0000
(20:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52096
91177308
-0d34-0410-b5e6-
96231b3b80d8
docs/ReleaseNotes.html
patch
|
blob
|
history
diff --git
a/docs/ReleaseNotes.html
b/docs/ReleaseNotes.html
index 3cb9f94bb320e407f046e496942c3b6ec8020546..f1538e071e4035312b52b1c93291c519c81bc64b 100644
(file)
--- a/
docs/ReleaseNotes.html
+++ b/
docs/ReleaseNotes.html
@@
-213,14
+213,14
@@
LLVM 2.3 optimizers support a few major enhancements:</p>
This transformation hoists conditions from loop bodies and reduces loop's
iteration space to improve performance. For example, <p>
<pre>
-for (i = LB; i
<
UB; ++i)
- if (i
<
= NV)
+for (i = LB; i
<
UB; ++i)
+ if (i
<
= NV)
LOOP_BODY
</pre>
is transformed into
<pre>
NUB = min(NV+1, UB)
-for (i = LB; i
<
NUB; ++i)
+for (i = LB; i
<
NUB; ++i)
LOOP_BODY
</pre>
</li>