Content deleted Content added
m Disambig python |
No edit summary |
||
Line 145:
; ''dead code elimination'': Remove instructions that will not affect the behaviour of the program. For example in "int myFunc(int a){int b,c; b=a*2; c=a*3; return b;}" the statement "c=a*3" doesn't do anything useful and can be removed.
; ''using CPU instructions with complex offsets to do math'' : on many processors in the [[68000 family]], for example, "lea
; ''code-block reordering'': reduce conditional branches and improve [[locality of reference]]
|