[llvm-commits] [llvm] r52096 - /llvm/trunk/docs/ReleaseNotes.html

Chris Lattner sabre at nondot.org
Sun Jun 8 13:25:30 PDT 2008


Author: lattner
Date: Sun Jun  8 15:25:30 2008
New Revision: 52096

URL: http://llvm.org/viewvc/llvm-project?rev=52096&view=rev
Log:
add some html escapes

Modified:
    llvm/trunk/docs/ReleaseNotes.html

Modified: llvm/trunk/docs/ReleaseNotes.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ReleaseNotes.html?rev=52096&r1=52095&r2=52096&view=diff

==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Sun Jun  8 15:25:30 2008
@@ -213,14 +213,14 @@
 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>





More information about the llvm-commits mailing list