mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-13 08:35:46 +00:00
add some html escapes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52096 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
27aff8755b
commit
c4e6b37329
@ -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
|
This transformation hoists conditions from loop bodies and reduces loop's
|
||||||
iteration space to improve performance. For example, <p>
|
iteration space to improve performance. For example, <p>
|
||||||
<pre>
|
<pre>
|
||||||
for (i = LB; i < UB; ++i)
|
for (i = LB; i < UB; ++i)
|
||||||
if (i <= NV)
|
if (i <= NV)
|
||||||
LOOP_BODY
|
LOOP_BODY
|
||||||
</pre>
|
</pre>
|
||||||
is transformed into
|
is transformed into
|
||||||
<pre>
|
<pre>
|
||||||
NUB = min(NV+1, UB)
|
NUB = min(NV+1, UB)
|
||||||
for (i = LB; i < NUB; ++i)
|
for (i = LB; i < NUB; ++i)
|
||||||
LOOP_BODY
|
LOOP_BODY
|
||||||
</pre>
|
</pre>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user