add some html escapes
authorChris Lattner <sabre@nondot.org>
Sun, 8 Jun 2008 20:25:30 +0000 (20:25 +0000)
committerChris 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

index 3cb9f94bb320e407f046e496942c3b6ec8020546..f1538e071e4035312b52b1c93291c519c81bc64b 100644 (file)
@@ -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>