Loop-invariant code motion: Difference between revisions

Content deleted Content added
2nd optimisation
No edit summary
Line 1:
'''Loop-invariant code''' in an [[Imperative programming|imperative]] [[Computer programming|programming]] language consists of statements which could be moved to before the loop (if the loop always terminates), or after the loop, without affecting the semantics of the program. As a result it is executed less often, providing a speedup. '''Loop-invariant code motion''' is a [[compiler optimization]] which performs this movement automatically.
 
==Worked Example==