summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-06-08 20:25:30 +0000
committerChris Lattner <sabre@nondot.org>2008-06-08 20:25:30 +0000
commitc4e6b373299cb9d6aa3b43c26ff7a80bca7e116c (patch)
treed7da7994196c74728b52162f0cd31791851543f9 /docs
parent27aff8755b33bfa59a22126fcd7f700d0fdde8db (diff)
downloadllvm-c4e6b373299cb9d6aa3b43c26ff7a80bca7e116c.tar.gz
llvm-c4e6b373299cb9d6aa3b43c26ff7a80bca7e116c.tar.bz2
llvm-c4e6b373299cb9d6aa3b43c26ff7a80bca7e116c.tar.xz
add some html escapes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52096 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ReleaseNotes.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 3cb9f94bb3..f1538e071e 100644
--- 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 &lt; UB; ++i)
+ if (i &lt;= NV)
LOOP_BODY
</pre>
is transformed into
<pre>
NUB = min(NV+1, UB)
-for (i = LB; i < NUB; ++i)
+for (i = LB; i &lt; NUB; ++i)
LOOP_BODY
</pre>
</li>