Dead code: Difference between revisions

Content deleted Content added
No edit summary
Undid revision 301203475 by 65.115.233.219 (talk): looks like vandalism (or an abandoned, incomplete thought?) ~~~~
Line 4:
 
While the result of a dead computation may never be used the dead code may raise [[exceptions]] or affect some global state, thus removal of such code may change the output of the program and introduce unintended [[software bug|bugs]]. Compiler optimizations are typically conservative in their approach to dead code removal if there is any ambiguity as to whether removal of the dead code will affect the program output.
Says Paul
 
== Example ==