diff options
-rw-r--r-- | docs/ReleaseNotes.html | 6 |
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 < 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> |