From: Chris Lattner Date: Sun, 8 Jun 2008 20:25:30 +0000 (+0000) Subject: add some html escapes X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c4e6b373299cb9d6aa3b43c26ff7a80bca7e116c;p=oota-llvm.git add some html escapes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52096 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 3cb9f94bb32..f1538e071e4 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -213,14 +213,14 @@ LLVM 2.3 optimizers support a few major enhancements:

This transformation hoists conditions from loop bodies and reduces loop's iteration space to improve performance. For example,

-for (i = LB; i < UB; ++i)
-  if (i <= NV)
+for (i = LB; i < UB; ++i)
+  if (i <= NV)
     LOOP_BODY
 
is transformed into
 NUB = min(NV+1, UB)
-for (i = LB; i < NUB; ++i)
+for (i = LB; i < NUB; ++i)
   LOOP_BODY