Crossware

Table of Contents        Previous topic       Next topic       

C/C++ COMPILER->Compiler command line options->Dead Code Elimination (/Oe)

The /Oe option tells the compiler to attempt to remove redundant definitions.  A statement is redundant if the variable it defines is never used and if it has no side-effects.

Transformation of the program into an special intermediate form is required in order for this optimization to be performed.