diff options
author | Chris Lattner <sabre@nondot.org> | 2008-06-08 20:25:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-06-08 20:25:30 +0000 |
commit | abc3b353a52d963b9235e7f06e1b0d7bde0bc477 (patch) | |
tree | d7da7994196c74728b52162f0cd31791851543f9 /docs/ReleaseNotes.html | |
parent | a73561c701b2a84659d600c7baafa83aaf9a1cb4 (diff) | |
download | external_llvm-abc3b353a52d963b9235e7f06e1b0d7bde0bc477.zip external_llvm-abc3b353a52d963b9235e7f06e1b0d7bde0bc477.tar.gz external_llvm-abc3b353a52d963b9235e7f06e1b0d7bde0bc477.tar.bz2 |
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/ReleaseNotes.html')
-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 3cb9f94..f1538e0 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> |